【单选题】
在Java中,( )类可用于创建链表数据结构的对象。
【单选题】
使用“typedef int Integer;”语句把Integer定义为一个( )。
【单选题】
使用“typedef int Integer;”语句把Integer定义为一个( )。
【判断题】
在VBA语言中,字符串类型名称为String,整数类型名称为Integer。
【判断题】
Java程序里,创建新的类对象用关键字new,回收无用的类对象使用关键字free。
【判断题】
String str=abcedf; int length=str.length;
【单选题】
在 Java 语言中,哪一个包中的类是自动导入的?( )
【单选题】
阅读以下代码:
import java.io.*;
import java.util.*;
public class foo{
public static void main (String[] args){
String s;
System.out.println(s= + s);
}
}
输出结果应该是:( )
③
由于String s没有初始化,代码不能编译通过
④
代码得到编译,但捕获到 NullPointException异常
【单选题】
在Java中,JDBCAPI定义了一组用于与数据库进行通信的接口和类,它们包括在( )包中。