idea 中编辑java 语句 System.out.println("hallo"); 出现问题 提示System为未识别标识符?
Posted
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了idea 中编辑java 语句 System.out.println("hallo"); 出现问题 提示System为未识别标识符?相关的知识,希望对你有一定的参考价值。
这应该是IDEA的SDK没有配置导致的,你在环境变量里面配置是没用的,你检查下呢,具体如图
参考技术A JDK配置的对么,System是jdk里的,是不是你的jdk没有添加环境变量追问JDK配了,不知道对不对,在eclipse上用的时候能用
参考技术B import了吗追问那就不太明白了 可以共享代码来测试吗(放github)
finally语句是否一定执行
package we; public class SystemExitAndFinally { public static void main(String[] args) { try{ System.out.println("in main"); throw new Exception("Exception is thrown in main"); //System.exit(0); } catch(Exception e) { System.out.println(e.getMessage()); System.exit(0); } finally { System.out.println("in finally"); } } }
不一定执行
以上是关于idea 中编辑java 语句 System.out.println("hallo"); 出现问题 提示System为未识别标识符?的主要内容,如果未能解决你的问题,请参考以下文章
idea 中编辑java 语句 System.out.println("hallo"); 出现问题 提示System为未识别标识符?