单项选择题
如何暂停一个线程?()
A. 调用System.pauseThred函数暂停 B. 调用线程类的pauseThred函数暂停 C. 调用Runnable接口的pauseThread函数暂停 D. 调用Thred类的sleep静态函数暂停线程
多项选择题 以下字符串函数的描述中,错误的是()
单项选择题 以下语句的含义是() char[] arrcrlf={13,10}; String crlf=new String(arrcrlf); stringBuffer dest = new StringBuffer("西行漫记"); dest.append(crlf);
判断题 Java只支持单继承,也就是说子类只能有一个直接父类。