函数声明后删除的含义 [英] Meaning of = delete after function declaration

查看:155
本文介绍了函数声明后删除的含义的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!

问题描述

class my_class
{
    ...
    my_class(my_class const &) = delete;
    ...
};

= delete

是否有任何其他修饰符( = 0 = delete )?

Are there any other "modifiers" (other than = 0 and = delete)?

推荐答案

删除函数一个C ++ 11功能


禁止复制的常用形式现在可以直接用
表示:

The common idiom of "prohibiting copying" can now be expressed directly:

class X {
    // ...
    X& operator=(const X&) = delete;  // Disallow copying
    X(const X&) = delete;
};

[...]

删除机制可用于任何功能。例如,我们
可以消除不想要的转换,例如:

The "delete" mechanism can be used for any function. For example, we can eliminate an undesired conversion like this:

struct Z {
    // ...

    Z(long long);     // can initialize with an long long         
    Z(long) = delete; // but not anything less
};


这篇关于函数声明后删除的含义的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持IT屋!

查看全文
登录 关闭
扫码关注1秒登录
发送“验证码”获取 | 15天全站免登陆