f0810.cpp
资源名称:c.rar [点击查看]
上传用户:puke2000
上传日期:2022-07-25
资源大小:912k
文件大小:1k
源码类别:
C#编程
开发平台:
Visual C++
- //=====================================
- // f0810.cpp
- // test class scope
- //=====================================
- #include<iostream>
- using namespace std;
- //-------------------------------------
- class X{
- public:
- void f1(){
- m=6;
- f2();
- }//----------------------------------
- void f2();
- private:
- int m;
- };//-----------------------------------
- void X::f2(){
- cout<<"Data member: "<<m<<endl; // X::m
- int m=7;
- cout<<"Local Variable: "<<m<<endl; // X::m被掩藏
- cout<<"Data member: "<<X::m<<endl;
- }//------------------------------------
- int main(){ // 此处以下不属于类作用域但属于类定义作用域
- X x;
- x.f1();
- }//====================================