在使用调试器的 Visual Studio 2010 Express 中,我可以输入成员函数,例如:
?visc(alpha,i)
8.2814899360436612e-005
?get_sign()
0.91513417241239037
进入即时窗口,它们工作正常。但是,如果我尝试:
?sin(alpha)
?math.sin(alpha)
?cmath.sin(alpha)
我得到Error: symbol "math" not found
等等。我已将cmath.h包含在主文件中,并在整个代码中使用sin
、asin
、cos
、acos
、atan2
和。sqrt
如何在即时窗口中获得这些功能?我用谷歌搜索了我的问题,发现了一个在 2005 年添加的请求以及使用成员函数的示例。