如何在c ++中编写此代码?
public bool returnboolean(bool x)
{ return x; }
public double sum(double one, double two)
{ return one+two; }
public string yourname(string name)
{ return "hello "+yourname; }
我去哪里写代码?在* .h?或者在* .cpp?
这两个班的目标是什么?因为那时我添加了一个他们创建了2个clases的类。
如何创建实例?
例如在c#:
中person p1 = new person();
c ++中的等价物是什么?
答案 0 :(得分:3)
#include <string>
public:
bool returnboolean(bool x)
{
return x;
}
double sum(double one, double two)
{
return one+two;
}
std::string yourname(std::string name)
{
return "hello " + name;
}