码迷,mamicode.com
首页 > 编程语言 > 详细

vs2010编译C++ 静态成员函数的引用

时间:2015-05-23 12:50:52      阅读:122      评论:0      收藏:0      [点我收藏+]

标签:

// CTest.cpp : 定义控制台应用程序的入口点。
//

#include "stdafx.h"
#include <iostream>
using namespace std;

class Tc{
private :
       int a;
       static int b;
public :
    Tc(int t){
        a = t;b = b+t;
    }
    static void display(Tc C){
        cout<<C.a<< <<C.b<<endl;
    }
};
int Tc::b=2;
int _tmain(int argc, _TCHAR* argv[])
{
    Tc A(2),B(4);
    Tc::display(A);
    Tc::display(B);

    system("pause");
    return 0;
}

 

vs2010编译C++ 静态成员函数的引用

标签:

原文地址:http://www.cnblogs.com/bksqmy/p/4523931.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!