赞
踩
DLL是Dynamic Link Library的缩写,意为动态链接库。在Windows中,许多应用程序并不是一个完整的可执行文件,它们被分割成一些相对独立的动态链接库,即DLL文件,放置于系统中。当我们执行某一个程序时,相应的DLL文件就会被调用。一个应用程序可有多个DLL文件,一个DLL文件也可能被几个应用程序所共用,这样的DLL文件被称为共享DLL文件。DLL文件一般被存放在C:WindowsSystem目录下。
for(;;)和while(true)在转为class文件之后,他们的字节码文件是一样的,所以使用只看个人习惯。
但是在c语言中,while(1) (同java中的whiletrue)比for(;;)要慢
所以,综上,无限循环还是使用for(;;)好
if(typeof(programLength) == "undefined"){
alert("undeifi");
}
- var students = new Array();
- students[0] = "pika";
- students[1] = "hello";
- students[2] = "hey";
- var json = JSON.stringify(students);
- alert(json);
输出结果:["pika","hello","hey"]
Copyright © 2003-2013 www.wpsshop.cn 版权所有,并保留所有权利。