const 定义的类怎么改变初值,mutable 轻松解决 以第四版c++程序设计(谭浩强著)第九章第7题为例 第六题的代码 #include <iostream> using namespace std; class Student { public: Student(int n,float s):num(n),score(s){ } void change(int n,float s)