码迷,mamicode.com
首页 > 其他好文 > 详细

mutable

时间:2020-06-30 17:41:54      阅读:52      评论:0      收藏:0      [点我收藏+]

标签:table   ret   mutable   int   vat   tab   amp   static   private   


int m=9;

struct C{
    int f() const{
        return ++e;
    }
private:
      mutable  int e;
    static int d;
};

int C::d = 2;

int main(int argc, char *argv[])
{
    int c = 4;
    std::cout<<&c<<‘\n‘;
    auto e= [=]() mutable {
        std::cout<<&c<<‘\n‘;
        std::cout<<c;

    };
    e();
    return 0;
}

mutable

标签:table   ret   mutable   int   vat   tab   amp   static   private   

原文地址:https://www.cnblogs.com/Janly/p/13214632.html

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