摘要:
Today when i was using svn, i found that the files under the directory created by me is read-only and can not be updated by myself, i search the internet and the help document of svn, at last i found ... 阅读全文
摘要:
Teach Yourself Programming in Ten Years Peter Norvig Why is everyone in such a rush? Walk into any bookstore, and you'll see how to Teach Yourself Java in 7 Days alongside endless variations offering... 阅读全文
摘要:
在实际项目中,用到一段源码,代码如下:switch (t){case 0:int a = 0;break;default:break;}在编译时弹出:error C2361: initialization of 'a' is skipped by 'default' label错误。最后改为switch (t){case 0:{int a = 0;break;}default:break;}编译通... 阅读全文