我有问题Intellisense
on Visual Studio 2010
。
Intellisense
不建议类构造函数的参数。虽然它适用于类方法。
class Window
{
private:
WindowImpl *Impl;
public:
static unsigned int WindowCount;
Window();
Window(unsigned int width, unsigned int height, const std::string &title, int x, int y, unsigned int style);
void Create(unsigned int width, unsigned int height, const std::string &title, int x, int y, unsigned int style);
~Window();
void Destroy();
};
错误:没有构造函数实例与参数列表匹配
Window mainWindow(100, 200 ...
工作正常
mainWindow.Create(100, 200 ...
没有编译错误,但Intellisense
不显示(不建议)构造函数的参数并显示此错误。
我发现所有课程都存在这个问题。我希望截图能帮助理解我的意思。我试过Visual Assist X
了,但没有帮助。提前致谢。