错误 C1071

在注释中遇到意外的文件结束

编译器在扫描注释时到达文件末尾。

通过检查以下可能的原因进行修复

  1. 缺少注释终止符 (*/)。

  2. 源文件最后一行的注释后缺少换行符。

以下示例生成 C1071:

// C1071.cpp
int main() {
}

/* this comment is fine */
/* forgot the closing tag        // C1071