在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()
成員函數來輸出對象的信息。