- 浏览: 28538 次
- 性别:
- 来自: 上海
最新评论
文章列表
JavaScript程序是用Unicode字符集编写的。每个字符都是2个字节,不过这个事实对程序员是透明的。
<script> var strEn = "abc"; var strCn = "中国人"; var str = "a中"; alert(strEn.length); //3 alert(strCn.length); //3 alert(str.length); //2
alert(strCn.charAt(2)); //人 alert(strEn.charCodeAt(0)); //97 返回 ...
- 2006-10-21 21:22
- 浏览 704
- 评论(0)
The GPL grants the recipients of a computer program the following rights:
the right to run the program, for any desired purpose.
the right to study how the program works, and modify it. (Access to the source code is a precondition for this)
the right to redistribute copies.
the r ...
- 2006-10-21 21:07
- 浏览 342
- 评论(0)
以前自己太散漫了,学习不认真。
现在发现自己好虚,于是今天想好好学习JAVA。
用下面的方法:
1。我要多看书,学习基本原理,DS,DB,OS,etc。
把一些自己感悟到的东西发上来。
2。我要狂逛CSDN,链接一些好的文章。我不是要抄袭,只是把它们放在一起好学习。
如果,有朋友对我的BLOG有什么建议的话,欢迎留言。
- 2006-04-12 13:38
- 浏览 541
- 评论(0)