C++ Primer(第五版) 7.4--7.6节练习
7.33 pos位于类的作用域之外,无法直接使用,应改为Screen::pos。7.34 放在最后一行无法通过编译,声明中使用的名字,包括返回类型和参数列表使用的名字,都必须在使用前确保可见。7.35 typedef string Type;Type iniVal(); //Type为stringclass Exercise {public: t...