number 编译错 (类的大小写错误) Filewriter cannot be resolved to a type
Posted dianzan
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了number 编译错 (类的大小写错误) Filewriter cannot be resolved to a type相关的知识,希望对你有一定的参考价值。
没找到所使用的类所在的类定义,一般常见于使用了外部jar中的类,但有对应的import语句。
比如,如果程序中使用了ArrayList这个类,但你程序类文件的最开始import部分如果没有
import java.util.ArrayList;
这句话的话,ArrayList出线的地方就会报ArrayList cannot be resolved to a type。
。
以上是关于number 编译错 (类的大小写错误) Filewriter cannot be resolved to a type的主要内容,如果未能解决你的问题,请参考以下文章