老师您好!在ReadGraph的constructor中有这样一段代码:
int V = scanner.nextInt(); if (V < 0) throw new IllegalArgumentException("number of vertices in a Graph must be nonnegative"); assert V == graph.V();
但是我发现,当传入的图的顶点个数V()与文档中的V不同时,也一样不会报错,也就是说,好像assert V == graph.V();没有起作用。