• static成员变量的使用


    最近自己在研究C++中static成员变量的注意事项,只是自我研究,仅供参考:

    例如:

    file1.h

    #ifndef FILE_1_H
    #define FILE_1_H
    
    void func1(void);
    void func2(void);
    static int func(void);
    #endif // FILE_1_H
    

    file1.cpp

    #include "file1.h"
    #include <iostream>
    using namespace std;
    
    static int a;
    void func1(void)
    {
        cout << "a = " << a << endl;
        cout << "call a:" << endl;
        cout << "a = " << a << endl;
        a++;
        return;
    }
    void func2(void)
    {
        cout << "call func2:" << endl;
        cout << "a = " << a << endl;
        a++;
        return;
    }
    
    void func(void)
    {
        cout << "call static func" << endl;
        return;
    }
    

      编译错误如下:

    C:UsersEADEFJIcodeblocksProjects1007file1.cpp||In function `void func()':|
    C:UsersEADEFJIcodeblocksProjects1007file1.cpp|23|error: new declaration `void func()'|
    C:UsersEADEFJIcodeblocksProjects1007file1.h|6|error: ambiguates old declaration `int func()'|
    C:UsersEADEFJIcodeblocksProjects1007file1.cpp|23|warning: 'void func()' defined but not used|
    ||=== Build finished: 2 errors, 1 warnings (0 minutes, 0 seconds) ===|

    所以,最好不要在头文件中定义(初始化)某个静态数据成员或静态成员函数,而应该在相应的.cpp文件中定义及使用

  • 相关阅读:
    Python自动截图html页面
    filebeat+kafka+logstash+Elasticsearch+Kibana日志收集系统搭建
    k8s重要概念
    1721. 使括号有效的最少添加
    167. 链表求和
    272. 爬楼梯 II
    1609. 链表的中间结点
    SQL server查看触发器是否被禁用
    C#窗体内控件大小随窗体等比例变化
    微信接口返回码参考表
  • 原文地址:https://www.cnblogs.com/qiangupc/p/3462984.html
Copyright © 2020-2023  润新知