您的位置:首页 > 编程语言 > Java开发

Think in java 答案_Chapter 5_Exercise 1

2007-01-23 14:13 661 查看
阅前声明: http://blog.csdn.net/heimaoxiaozi/archive/2007/01/19/1487884.aspx

/****************** Exercise 1 ******************
* Write a program that creates an ArrayList
* object without explicitly importing
* java.util.*.
***********************************************/
public class E01_ImplicitImports {
public static void main(String args[]) {
java.util.ArrayList al =
new java.util.ArrayList();
}
}

//+M java E01_ImplicitImports

**To do this, any references to the object must be made using its full package name.
内容来自用户分享和网络整理,不保证内容的准确性,如有侵权内容,可联系管理员处理 点击这里给我发消息
标签: