摘要: 一、指向const对象的指针---对象不能修改方式1int value1 = 3; const int *p1 = &value1; *p1 = 5; //错误,不能修改const指向对象的值cout << "value1 = " << value1 << ",*p1 = " << *p1 << e... 阅读全文
posted @ 2015-01-19 20:13 Self_improve 阅读(503) 评论(0) 推荐(0) 编辑
摘要: Window-->Preferences-->General-->Editors-->Text Editors-->Background color自定义颜色:色调:85,饱和度:123,亮度:205。 阅读全文
posted @ 2015-01-19 14:31 Self_improve 阅读(183) 评论(0) 推荐(0) 编辑