VC6.0: error C2064: term does not evaluate to a function

来源:互联网 发布:通联数据和通联支付 编辑:程序博客网 时间:2024/05/17 02:35

 error C2064: term does not evaluate to a function

开发环境: Vc++ 6.0

工程: Win32控制台程序, 有MFC支持

代码:

 time_t current;

 current = time(NULL);

修改代码为: 问题解决
  

 time_t current;

 current = ::time(NULL);