我是靠谱客的博主 迷人摩托,最近开发中收集的这篇文章主要介绍C++库研究笔记--用__attribute__((deprecated)) 管理过时代码,觉得挺不错的,现在分享给大家,希望可以做个参考。

概述

用__attribute__((deprecated)) 管理过时代码。同一时候保留兼容的接口

Linux下:


#define  DEPR_AFTER __attribute__((deprecated))
#define  DEPR_BEFOR 


class DEPR_BEFOR AAA
{
}DEPR_AFTER;

int main(int argc, char** argv)
{
    typedef float T;
    AAA aa;

    return 0;
}

g++ main.cpp -o main

main.cpp: In function ‘int main(int, char**)’:
main.cpp:16:9: warning: ‘AAA’ is deprecated (declared at main.cpp:9) [-Wdeprecated-declarations]


WINDOWS下:

对于VC,类似如OPENCV定义:

#if defined __GNUC__
    #define __CV_GPU_DEPR_BEFORE__
    #define __CV_GPU_DEPR_AFTER__ __attribute__ ((deprecated))
#elif defined(__MSVC__) //|| defined(__CUDACC__)
    #pragma deprecated(DevMem2D_)
    #define __CV_GPU_DEPR_BEFORE__ __declspec(deprecated)
    #define __CV_GPU_DEPR_AFTER__
#else
    #define __CV_GPU_DEPR_BEFORE__
    #define __CV_GPU_DEPR_AFTER__
#endif


转载于:https://www.cnblogs.com/brucemengbm/p/7388087.html

最后

以上就是迷人摩托为你收集整理的C++库研究笔记--用__attribute__((deprecated)) 管理过时代码的全部内容,希望文章能够帮你解决C++库研究笔记--用__attribute__((deprecated)) 管理过时代码所遇到的程序开发问题。

如果觉得靠谱客网站的内容还不错,欢迎将靠谱客网站推荐给程序员好友。

本图文内容来源于网友提供,作为学习参考使用,或来自网络收集整理,版权属于原作者所有。
点赞(68)

评论列表共有 0 条评论

立即
投稿
返回
顶部