- 分享
- 0
- 人气
- 0
- 主题
- 0
- 帖子
- 1918
- UID
- 186121
- 积分
- 1882
- 阅读权限
- 19
- 注册时间
- 2008-12-15
- 最后登录
- 2011-6-7
- 在线时间
- 747 小时
|
今天在入手Java時,抄了HelloWorldApp進NetBeans IDE進行分析.途中無意中修改了 public static void main(String args[ ]) { 變成 public static void main(String[ ] args) { .然後想說按Run看能不能跑.兩者的結果一樣.上了Google找一下,有者說沒差別,有者卻說
string[] args the variable in the [] is the condition.
in string args[] the argument in the [] is the condition.
string[$1] args means if the string is $1 then do args
string args[$1] means if the args is $1 then string/array the args...
所以上來JBTalks來問下兩者的差別.
_________________________________________________________________________________________________________________
11/2 新問題
在C++里 " " (double quote) 和 ' ' (single quote) 到底有什麼差別? 問之前有自己 google 下,得到的答案是
double quotes is used for NULL-terminated strings, single quote is for a single character.
在測試過後發覺2個都可以用,沒差別. 為了避免不好的習慣,所以上來問問搞清楚的說.
[ 本帖最后由 TenNix 于 2009-2-11 04:13 PM 编辑 ] |
|