本文介绍了错误C4430:缺少类型说明符 - 假定为int。注意:C ++不支持default-int的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!

问题描述

PLZ任何人帮助我,为什么会出现这种类型的错误。



当我声明

plz any one help me,why this types of error come.

when i declare a

const LABELS_PER_ROW = 2;




Error   1   error C4430: missing type specifier - int assumed. Note: C++ does not support default-int

推荐答案

const int LABELS_PER_ROW = 2;



这正是错误所说的:如果你不添加 int ,那么有一种类型说明符缺失。


That's exactly what the error says: if you don't add int, then there is a type specifier missing.


这篇关于错误C4430:缺少类型说明符 - 假定为int。注意:C ++不支持default-int的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持!

09-01 22:52