C++构造函数问题
classA{}classB{private:vector<A*>a;//****}B类构造函数是否需要初始化a,怎么初始化?...
class A {}
class B{
private:
vector<A*> a;
//****
}
B类构造函数是否需要初始化a,怎么初始化? 展开
class B{
private:
vector<A*> a;
//****
}
B类构造函数是否需要初始化a,怎么初始化? 展开
2个回答
展开全部
1.构造函数当然没有返回值,他只是描述了类初始化的行为。
2.但是new是有返回值的啊!new返回的一定是类实例的指针啊,所以new tree返回的是tree*,所以构造函数跟返回该类的空间是没有关系的。
下面举个例子给你看看:
#include <iostream>
#include <fstream>
#include <algorithm>
#include <string>
#include <cstring>
#include <vector>
#include <queue>
using namespace std;
class tree {
int value;
public:
tree(int v):value(v){}
int get_value() {return value;}
};
int main(int argc, char *argv[])
{
//ifstream in_file("zhidao.text");
queue<tree*> q;
for (int i = 0;i< 10 ;++i )
{
tree * tmp = new tree(i);
q.push(tmp);
}
//test code
while(!q.empty())
{
cout<<q.front()->get_value()<<" ";
q.pop();
}
cout<<endl;
return 0;
}
2.但是new是有返回值的啊!new返回的一定是类实例的指针啊,所以new tree返回的是tree*,所以构造函数跟返回该类的空间是没有关系的。
下面举个例子给你看看:
#include <iostream>
#include <fstream>
#include <algorithm>
#include <string>
#include <cstring>
#include <vector>
#include <queue>
using namespace std;
class tree {
int value;
public:
tree(int v):value(v){}
int get_value() {return value;}
};
int main(int argc, char *argv[])
{
//ifstream in_file("zhidao.text");
queue<tree*> q;
for (int i = 0;i< 10 ;++i )
{
tree * tmp = new tree(i);
q.push(tmp);
}
//test code
while(!q.empty())
{
cout<<q.front()->get_value()<<" ";
q.pop();
}
cout<<endl;
return 0;
}
推荐律师服务:
若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询