在C++中,创建一个类对象的方法如下:
Person
的简单类:#include<iostream>
#include<string>
class Person {
public:
std::string name;
int age;
// 构造函数
Person(std::string n, int a) : name(n), age(a) {}
// 成员函数
void introduce() {
std::cout << "My name is "<< name << " and I am "<< age << " years old."<< std::endl;
}
};
Person
类的对象:int main() {
// 使用构造函数创建对象
Person person1("Alice", 30);
// 访问对象的属性和成员函数
person1.introduce();
return 0;
}
在这个例子中,我们创建了一个名为person1
的Person
类对象,并使用构造函数初始化其属性。然后,我们调用introduce()
成员函数来输出对象的信息。