类接受未指定的初始化程序[重复]

Posted

技术标签:

【中文标题】类接受未指定的初始化程序[重复]【英文标题】:Class accepts unspecified initilizer [duplicate] 【发布时间】:2017-06-09 00:03:47 【问题描述】:

我不明白为什么 Item_Base 的初始化程序接受另一个对象作为有效输入。我假设这里使用了一些隐式重载?

class Item_Base 

public:
  Item_Base(const std::string& item_name);
  ~Item_Base(void);
  std::string tostr();
private:
  const std::string name;
;

Item_Base::Item_Base(const std::string& item_name)
:name(item_name)

  std::cout << "Constructing: " << name << std::endl;


Item_Base::~Item_Base(void)

  std::cout << "Destructing: " << name << std::endl;


std::string Item_Base::tostr()

  return name;


int main(int argc, char **argv)

  Item_Base red_book("Red Book");
  Item_Base green_bow("Green Bow");
  Item_Base copy_test = red_book;
  Item_Base init_test(green_bow); // Why does this work?

  std::cout << red_book.tostr() << std::endl;
  std::cout << green_bow.tostr() << std::endl;
  std::cout << copy_test.tostr() << std::endl;
  std::cout << init_test.tostr() << std::endl;

  return 0;

输出

Constructing: Red Book
Constructing: Green Bow
Red Book
Green Bow
Red Book
Green Bow
Destructing: Green Bow
Destructing: Red Book
Destructing: Green Bow
Destructing: Red Book

【问题讨论】:

【参考方案1】:

如果你想防止复制和赋值,只需删除那些方法:

Item_Base(const Item_Base&) = delete;
Item_Base& operator=(const Item_Base&) = delete;

【讨论】:

对不起,我应该澄清一下,我不明白为什么 init_test 的 intilisation 是有效的。 @Pax:有效,因为你没有使用我提供的代码。

以上是关于类接受未指定的初始化程序[重复]的主要内容,如果未能解决你的问题,请参考以下文章

Dapr 应用程序通道未初始化,如果需要 pubsub 订阅,请确保指定 -app-port

尝试执行 sudo 命令时给出“sudo:不存在 tty 且未指定 askpass 程序”的 shell 脚本 [重复]

是否在空的初始化程序列表(并明确指定类型)上调用 std::min 未定义的行为?

未指定暗淡时图像未填充画布[重复]

未找到指定的 JDBC 驱动程序 com.mysql.jdbc.Driver 类

如何修复错误“数据库未初始化且未指定密码选项”