【简答题】写一段程序判断一个有向图G中节点w是否从节点v可达。(如果G中存在一条从v至w的路径就说节点w是从v可达的)。以下算法是用C++写成的,在bool Reachable函数中,你可以写出自己的算法。 class Graph{ public: int NumberOfNodes()//返回节点的总数 bool HasEdge(int u,int v)//u,v是节点个数,从零开始依次递增,当有一条从 ...
【单选题】现有一个HappyBirthday.java,其中的程序如下: public class demo1 { public static void mian(string[] args){ System.out.println("Happy birthday!"); } } 编译并运行后报错,请问这段代码共有几处错误?
【单选题】如果有以下程序片段: interface Some { void doSome(); } abstract class AbstractSome implements Some { public abstract void doSome(); public void doService() { System.out.println("作一些服务"); } } public class Main {...
【单选题】如果有以下程序片段: interface Some { protected void doSome(); } class SomeImpl implements Some { public void doSome() { System.out.println("作一些事"); } } public class Main { public static void main(String[] args...
【单选题】C#程序中的类myClass中的字段var1如下: public class myClass { private int var1; } 则可以访问var1的有( )
D.
和myClass在同一命名空间下的类中的方法
【单选题】如果有以下程序片段: interface Some { void doSome(); } public class Main { public static void main(String[] args) { Some s = new Some() { public void doSome() { System.out.println("作一些事"); } public void doServi...
【简答题】有如下一段程序public a As IntegerPrivate Sub Command1_Click() a = a + 10 Print aEnd Sub单击Command1 5次后窗体上最后输出的结果是 。A. 0 B. 50 C. 10 D. 40
【单选题】FileInputStream的建构式使用throws宣告了FileNotFoundException,如果有以下程序片段: public class FileUtil { public static String readFile(String name) { try(FileInputStream input = new FileInputStream(name)) { ... } } } 以...
C.
呼叫readFile时必须处理FileNotFoundException
D.
呼叫readFile时不一定要处理FileNotFoundException
【单选题】如果有以下程序片段: interface Some { void doSome(); } class SomeImpl implements Some { public void doSome() { System.out.println("作一些事"); } } public class Main { public static void main(String[] args) { Some s...
【判断题】有远期汇票才需要办理承兑。因此,承兑交单方式只适用于有远期汇票的托收。( )