Visual C++不自动完成班级成员
编辑:我正在使用 VS 2008 Express Edition
不知道为什么,但有时我无法让 Visual C++ 自动填充类成员。
即,如果我有一个包含成员 a、b、c、d 的“字母”类
,并且我有一个实例字母,
当我输入时
Letters letter
letter. // say, I want letter.a
(当我输入字母时,我会得到一个成员列表,即 a、b、c、 d 可供选择)。
但有时我不这样做。该项目构建良好......所以我不确定为什么会发生这种情况。
EDIT: I am using VS 2008 Express Edition
Not sure why, but sometimes I can't get Visual C++ to autofill the class members.
i.e. if I have a class "Letters" with members a, b, c, d
and I have an instance letter,
When I type
Letters letter
letter. // say, I want letter.a
(When I type letter., I would get a list of members, i.e. a,b,c,d to choose from).
But sometimes I don't. The project builds fine..So I am not sure why this is happening.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
通常可以通过关闭解决方案、删除 .ncb 文件并再次打开解决方案来修复此问题。这样数据库就从头开始重建了。
It can often be fixed by closing the Solution, deleting the .ncb file, and opening the solution again. This way the database is rebuilt from scratch.
ctrl+space 有时可以鼓励它前进。
ctrl+space can sometimes encourage it along.