标签:cpp table tab 设值 har 假设 其他 str ++
指出即使结构或类变量为 const ,其某个成员也可以被修改
struct data { char name[20]; mutable int accesses; ... }; const data veep{"Claybourne Clodde",0,...}; strcpy(veep.name, "Joye Joux"); //not allowed veep.accesses++; //allowed
标签:cpp table tab 设值 har 假设 其他 str ++
原文地址:https://www.cnblogs.com/suui90/p/12868158.html