- 博客(4)
- 资源 (4)
- 问答 (1)
- 收藏
- 关注
原创 Severity Code Description Project File Line Suppression StateError (active) E0167 argument of type
问题源码: long stime=time(0); printf("\nS_Time: %s",ctime(&stime)); 解决方式: long stime=time(0); time_t temp = stime; printf("\nS_Time: %s", ctime(&temp));
2021-12-19 21:55:03
2674
原创 windows环境下手动安装Mysql8
1.下载安装 下载zip包,解压到c:\java_env_mysql8下, 2.配置环境变量 把c:\java_env_mysql8\bin放入到系统path变量中 3.编写my.ini文件,放置于c:\java_env_mysql8\下,内容如下: [mysqld] # set basedir to your installation path basedir=C:\\JAVA_ENV\\mysql8 # set datadir to the location of your data .
2021-11-18 12:11:01
200
原创 VC6.0->VS2019 C++ Error C2440 ‘initializing‘: cannot convert from ‘const char *‘ to ‘char *‘
报错源码: CString m_strMWStrata; char* pTarget = strstr(m_strMWStrata, "role:"); 错误信息: Error C2440 'initializing': cannot convert from 'const char *' to 'char *' 解决方案: char* pTarget = const_cast<char*>(strstr(m_strMWStrata, "role:")); 原因分析: c++
2021-11-07 09:41:54
2107
第12月工资与年终奖税收最优化分配计算器
2018-11-20
ButterWorth巴特沃斯滤波库
2018-11-21
TA创建的收藏夹 TA关注的收藏夹
TA关注的人
RSS订阅
1