博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
Eclipse “cannot be resolved to a type” error
阅读量:6224 次
发布时间:2019-06-21

本文共 988 字,大约阅读时间需要 3 分钟。

 

 

 
引言: 
    eclipse新导入的项目经常可以看到“XX cannot be resolved to a type”的报错信息。本文将做以简单总结。 
正文: 
    
(1)jdk不匹配(或不存在) 
    项目指定的jdk为“jdk1.6.0_18”,而当前eclipse使用的是“jdk1.6.0_22”。需要在BuildPath | Libraries,中做简单调整。 
    
(2)jar包缺失或冲突 
    当找不到“XX”所在的jar包时,会报这个错。解决只需要找到(ctrl+点击,可能能看到jar包名称)对应jar包导入项目即可。 
    另外,出现相同的XX时也会报此错。可能需要调包、解包、选删。 
    
(3)eclipse查找项目类型策略所致 
    eclipse下,上述两条都对比过了,没有任何问题,可偏偏还报这错。这时,需要操作一下 Project | Clean... ,问题即可解决。原因是,机制所致。因为某些特殊原因,eclipse没能自动编译源代码到build/classes(或其他classes目录),导致类型查找不到。 

 

 

Based on the comments here, I started checking how I could make sure that my Ant build 

wouldn’t interfere with my Eclipse build.

I found an option in Eclipse that clears up the problem (and is possibly more efficient than

 changing the 2 build system’s output folders).

Windows–>Preferences–>Java–>Compiler–>Building–>Output folder–>

”Rebuild class files modified by others”. This exists in Eclipse 3.5; I’m not sure about earlier versions.

Checking this seems to have fixed my problems

转载于:https://www.cnblogs.com/java2016/p/5378528.html

你可能感兴趣的文章
sz/rz工具包,linux下没有sz和rz命令
查看>>
tomcat项目进入不了debug模式
查看>>
我抽中了管理员bobo的祝福
查看>>
8款非常棒的响应式 jQuery 幻灯片插件推荐
查看>>
Web前端开发人员和设计师必读文章【系列十一】
查看>>
saltstack 数据系统——Grains
查看>>
springmvc 集成和使用 hibernate-validator
查看>>
Apache和Tomcat利用Proxy代理保持Session
查看>>
LVM(Logical Volume Manager)逻辑卷管理 - 简介、历史、术语、安装、命令、实例、故障排除...
查看>>
多选按钮(CheckBox)——Mars Android开发视频教程之第一季第九集(重)
查看>>
订单号消费码生成(线性同余算法)
查看>>
《SQLSERVER2012之T-SQL教程》T-SQL子查询
查看>>
[deviceone开发]-优惠券商户管理端App开源
查看>>
360搜索“搏杀”成功,赢在创新
查看>>
Apache服务出现Forbidden 403的问题总结
查看>>
onSaveInstanceState和onRestoreInstanceState触发的时机
查看>>
Gradle依赖
查看>>
图解Tomcat类加载机制(阿里面试题)
查看>>
在 CentOS Linux 上安装 Cobbler 批量部署系统
查看>>
Jmeter简单应用1
查看>>