0

我对 C++ 编程非常陌生,我编写了一个简单的类程序来显示项目的名称和持续时间。

#include<iostream>
class project
{

public: 
std::string name;
int duration; 
};

int main ()
{
project thesis;  // object creation of type class
thesis.name = "smart camera"; //object accessing the data members of its class
thesis.duration= 6;

std::cout << " the name of the thesis is" << thesis.name << ;
std::cout << " the duration of thesis in months is" << thesis.duration;
return 0;

但是现在我需要使用类的 get 和 set 成员函数来编写相同的范例。我需要编程有点像

#include<iostream.h>

class project
{

std::string name;
int duration; 

void setName ( int name1 ); // member functions set 
void setDuration( string duration1); 

};

void project::setName( int name1)

{

name = name1;

}


void project::setDuration( string duration1);

duration=duration1;

}

// main function

int main()
{
project thesis;  // object creation of type class

thesis.setName ( "smart camera" );
theis.setDuration(6.0);


//print the name and duration


return 0;

}

我不确定上面的代码逻辑是否正确,有人可以帮助我如何进行。非常感谢

4

1 回答 1

1

您已经编写了一些集合函数。您现在需要一些 get 函数。

int project::getName()
{
    return name;
}

std::string project::getDuration( )
{
    return duration;
}

由于数据现在是私有的,因此您无法从课堂外访问它。但是您可以在 main 函数中使用 get 函数。

std::cout << " the name of the thesis is" << thesis.getName() << '\n';
std::cout << " the duration of the thesis is" << thesis.getDuration() << '\n';
于 2013-06-28T15:49:07.263 回答