我是 C++ 新手,我正在使用 Bjarne Stroustrup 的《Programming Principles and Practice Using C++》一书(我将在未来的学校课程中使用这本书)。本书中的代码示例使用了std_lib_facilities.h。在某些时候,这本书会调用 function square()
,但是当我这样做时,会出现以下错误:
error C3861: 'square': identifier not found
另一方面,我可以使用该sqrt()
功能...我确实包含std_lib_facilities.h
,而那个包含cmath
,所以我认为这不是问题吗?
我应该怎么做才能使用该square()
功能?