在用Visual Studio 2017打开一个工程进行编译时,报了如下错误: fatal error C1083: 无法打开包括文件: “afx.h”: No such file or directory 原因是没有安装MFC组件,可能当时安装的时候没有勾选MFC。
1. 解决办法是打开Visual Studio Inst…
具体问题: [ERROR] Failed to execute goal org.mybatis.generator:mybatis-generator-maven-plugin:1.3.2:generate (default-cli) on project demo: The server time zone value ‘�й���ʱ�࿿…
auto_ptr 智能指针(C98) #include <iostream> using namespace std; void main(){ //auto_ptr for ( int i 0; i < 100000; i) { double *p new double ; //智能指针自动完成内存释放 把堆当作栈来处理 //相当于delete p auto_ptr < doubl…