摘要:
版本号的格式为 X.Y.Z(又称 Major.Minor.Patch),递增的规则为: X 表示主版本号,当 API 的兼容性变化时,X 需递增。 Y 表示次版本号,当增加功能时(不影响 API 的兼容性),Y 需递增。 Z 表示修订号,当做 Bug 修复时(不影响 API 的兼容性),Z 需递增。 阅读全文
摘要:
1.error: ‘strlen’ was not declared in this scope 方案:#include<cstring>//**<string.h>是不包括strlen的,要使用cstring** 2.error: size_t has not been declared据说这是因 阅读全文