假设在资源管理的概念中,每一种资源(Resource)都有对应的名称(name) 和数量(count)。 struct Resource { string name; int count; Resource(): name(""), count(0) {} Resource(const string& str, const int& c): name(str), count(c) {} }; struct Resource { string name; int count; Resource(): name(""), count(0) {} Resource(const string& str, const int& c): name(str), count(c) {} };
时间: 2023-06-04 14:06:24 浏览: 64
name, int count): name(name), count(count) {} }; 这里的结构体成员函数是什么意思?
这个问题是技术问题,可以回答。结构体Resource中的成员函数Resource()是默认构造函数,初始化name为"",count为0;成员函数Resource(const string name, int count)是带参数的构造函数,初始化name为参数name,count为参数count。
阅读全文