如何调用函数并使构造函数保持私有?如果我将类设为静态,我需要声明编译器用来调用构造函数的对象名称,如果构造函数是私有的(对象也是无关的),则不能。这是我尝试使用的代码(不可编译):
我想让构造函数保持私有,因为稍后我将在添加对象之前进行大量检查,当所有提交的变量都不是唯一的而不是创建新对象时修改以前的对象。
#include <iostream>
#include <fstream>
#include <regex>
#include <string>
#include <list>
#include <map>
using namespace std;
using namespace tr1;
class Referral
{
public:
string url;
map<string, int> keywords;
static bool submit(string url, string keyword, int occurrences)
{
//if(Referrals.all.size == 0){
// Referral(url, keyword, occurrences);
//}
}
private:
list<string> urls;
Referral(string url, string keyword, int occurrences)
{
url = url;
keywords[keyword] = occurrences;
Referrals.all.push_back(this);
}
};
struct All
{
list<Referral> all;
}Referrals;
int main()
{
Referral.submit("url", "keyword", 1);
}