类的数据成员设置为私有,而用类的共有函数来访问的例子。#includeusing namespace std;class Humanpublic:void set(int w)if(w0elsecout“ 请将 set 函数的参数设为大于 0 而小于 100,否则默返回为 0n“;weight=0;int show()return weight;private:int weight;int main()Human Tom;Tom.set(80);cout“Tom 的体重为:“Tom.show()“n“;Human Mike;Mike.set(60);cout“Mike 的体重为:“Mike.show()“n“;return 0;