我有两个类:一个是模板化的,一个不是。我正在尝试在非模板类中创建模板类的实例,并且程序将无法编译。我正在使用 Visual Studio 2012,我在 bar.h 中的这一行收到错误“IntelliSense:预期类型说明符”:
Foo<int> foo_complex(99);
我可以在类之外使用这种语法(参见下面的 console.cpp)。我可以在类中使用空构造函数。是什么赋予了?如何在 Bar 内正确使用 Foo 的非空构造函数?
在此先感谢您的帮助。我到处寻找解决方案,却一无所获。示例代码如下。为了清楚起见,类实现是内联的。
foo.h
#pragma once
template<typename T>
class Foo
{
public:
Foo();
Foo(int i);
};
template<typename T>
Foo<T>::Foo()
{
std::cout << "You created an instance of Foo without a value." << std::endl;
}
template<typename T>
Foo<T>::Foo(int i)
{
std::cout << "You created an instance of Foo with int " << i << std::endl;
}
酒吧.h
#pragma once
#include "foo.h"
class Bar
{
private:
Foo<int> foo_simple;
Foo<int> foo_complex(99); // Error ~ IntelliSense:expected a type specifier
public:
Bar(int i);
};
Bar::Bar(int i)
{
std::cout << "You created an instance of Bar with int " << i << std::endl;
}
控制台.cpp
#include "stdafx.h"
#include <iostream>
#include <string>
#include "foo.h"
#include "bar.h"
int _tmain(int argc, _TCHAR* argv[])
{
Foo<int> foo(1);
Bar bar(2);
std::string any = "any";
std::cout << std::endl;
std::cout << "Press any key to close this window..." << std::endl;
std::cin >> any;
return 0;
}