Description 一切都是对象 —— Everything is an object. 所以,现在定义一个类Thing,来描述世界上所有有名字的事物.该类只有构造函数.拷贝构造函数和析构函数,并具有一个字符串数据成员来存储其名字. Input 输入只有1行,是一个没有空白符的字符串. Output 见样例. Sample Input NAME Sample Output A thing without name is created! A thing without name is cop…