
我的笔记本
delunny
这个作者很懒,什么都没留下…
展开
-
java classcastexception 哈希表中的对象只能是同一类型的
以下的错误例子,看清了哈希表中的对象只能是同一类型的,否则会抛出classcastexception import java.util.*;class HashSetTest{ public static void main(String [] args) { HashSet hs = new HashSet(); hs.add("one"); hs.add("two"); hs.原创 2009-07-04 00:34:00 · 401 阅读 · 0 评论 -
zt::// ant 命令总结
ant命令总结1 Ant是什么? Apache Ant 是一个基于 Java的生成工具。生成工具在软件开发中用来将源代码和其他输入文件转换为可执行文件的形式(也有可能转换为可安装的产品映像形式)。随着应用程序的生成过程变得更加复杂,确保在每次生成期间都使用精确相同的生成步骤,同时实现尽可能多的自动化,以便及时产生一致的生成版本2 下载、安装Ant 安装Ant下载.zip文件,解压缩到c:/转载 2009-09-07 20:02:00 · 350 阅读 · 0 评论 -
android virtual Device
No compatible targets were found Do you wish to a add new Android Virtual Device解决方法:在命令提示符中,D:/study/google/android/android-sdk-windows-1.5_r3/tools>android create avd --name aid15r1 --target 2转载 2009-09-07 20:50:00 · 730 阅读 · 0 评论