摘要:
一、指向const对象的指针---对象不能修改方式1int value1 = 3; const int *p1 = &value1; *p1 = 5; //错误,不能修改const指向对象的值cout << "value1 = " << value1 << ",*p1 = " << *p1 << e... 阅读全文
摘要:
Window-->Preferences-->General-->Editors-->Text Editors-->Background color自定义颜色:色调:85,饱和度:123,亮度:205。 阅读全文