摘要: // age1\age2是常量,只读,下面两个写法是相同的 const int age1 = 20; int const age2 = 30; // const的修饰的*p1和*p2,*p1和*p2是常量,不能通过p1、p2指针间接修改其他变量的值,下面p1和p2的写法相同 ... 阅读全文
posted @ 2015-12-03 19:18 Z了个L 阅读(176) 评论(0) 推荐(0) 编辑