Java编程中黄色叹号表示警告,编写代码的过程中出现以下两种情况都会产生黄色叹号:
成都创新互联是一家专注于成都网站制作、做网站、外贸营销网站建设与策划设计,鄱阳网站建设哪家好?成都创新互联做网站,专注于网站建设10多年,网设计领域的专业建站公司;建站业务涵盖:鄱阳等地区。鄱阳做网站价格咨询:028-86922220
1、定义了变量或方法未使用
2、使用了过期的不推荐的类或方法
解决黄色叹号的方法也两种:
1、使用Java中的压制安全警告功能
2、删除掉未使用的方法或变量
在Java编程中,黄色叹号虽不影响程序的使用功能,但为了程序的可读性,健壮性,还是建议能消除的警告尽可能的消除,这样会使得项目更整洁,代码更美观,阅读起来更舒服。
这4个构造函数分别是对1个,2个,3个,以及4个参数的处理,最好别删,如果非要删掉一些代码的话,建议删掉前面3个构造函数,保留最后的有4个参数那个,当然最后那个也要修改
代码:
person(String name,int age,int weight,String address){
this.name = name;
this.age = age;
this.weight = weight;
this.address = address;
}
(PS:纯手打,望采纳)
HashSet添加重复元素,进行提示 , 那么可以自定一个HashSet类, 对add方法进行重写即可;
参考代码如下
import java.util.HashSet;
//自定义一个HashSet类
class MyHashSetE extends HashSetE {
//重写add方法即可,但数据已经存在,就给出提示
//源代码里addAll方法里还是会调用add方法; 所以不用重写addAll方法
@Override
public boolean add(E e) {
if(this.contains(e)){
System.out.println(e+"该数据已经存在了");
}
return super.add(e);
}
}
//测试类
public class Test {
public static void main(String[] args) {
MyHashSetString set = new MyHashSetString();
set.add("Jack");
set.add("Lucy");
set.add("Jack");//重复添加会进行提示
HashSetString set2 = new HashSet();
set2.add("Apple");
set2.add("Lucy");
set.addAll(set2); //重复添加,还是会进行提示
System.out.println(set);
}
}
测试结果
Jack该数据已经存在了
Lucy该数据已经存在了
[Apple, Lucy, Jack]
1. 从版本3.8 M6开始,Eclipse的(准确的说:JDT的)有内置的函数,这。它是可配置的,通过一个项目的构建路径:项目属性 Java构建路径编译器来源 在这里宣布:Eclipse的3.8和4.2的M6-新的和值得注意的是,所谓的选择性忽略源文件夹中的错误/警告。这也是那里的截图是从。这是链接错误220928开发新的函数。
2. 有这个一票,臭虫220928,具有自为Eclipse 3.8。请参考这个答案的细节。 上创建(或至少指向)一个名为“warningcleaner”在35插件票“马克”:如果你坚持使用Eclipse 3.7或更低。我认为有很多在等待这个函数被集成到Eclipse中。 这真的很简单: 安装插件。 右键单击项目并选择“添加/删除生成的代码自然”。 打开项目设置(右键单击并选择“属性”)。 打开选项卡“警告清洁'。 选择您想从忽略警告的源文件夹。
3. 我解决了这个maven的正则表达式替换插件-它并没有解决 CodeGo.net,但治愈的痛苦:plugin
groupIdcom.google.code.maven-replacer-plugin/groupId
artifactIdmaven-replacer-plugin/artifactId
version1.3.2/version
executions
execution
phaseprepare-package/phase
goals
goalreplace/goal
/goals
/execution
/executions
configuration
includes
includetarget/generated-sources/antlr/**/*.java/include
/includes
regextrue/regex
regexFlags
regexFlagMULTILINE/regexFlag
/regexFlags
replacements
replacement
token^public class/token
value@SuppressWarnings("all") public class/value
/replacement
/replacements
/configuration
/plugin
请注意,我没能拿到**符号来工作,所以你可能需要准确地指定路径。 参见下面的如何不产生重复@SupressWarnings
4. 我认为最好的你能做的就是使项目的具体设置用于显示警告。 窗口-设定- Java的-编译器-错误/警告 在窗体的顶部是一个链接,用于配置项目的具体设置。
5. 网友@乔恩暗示ant代码来做到这一点。下面是我的echoAdding @SuppressWarnings("all") to ANTLR generated parser/lexer *.java/echo
echo in ${project.build.directory}/generated-sources/antlr//echo
replace dir="${project.build.directory}/generated-sources/antlr/"
summary="true"
includes="**/*.java"
token="public class"
value='@SuppressWarnings("all") public class' /
需要注意的是Ant的Replace中并没有文本的正则表达式 所以它的令牌相匹配行的开始如maven的正则表达式替换插件一样。 我跑了Antlr从Maven的antrun-插件在我的Maven POM,ANTLR的maven插件没有用的Cobertura Maven插件踢好我这样做的。 (我知道这不是一个答案,原来的问题,但我不能在一个格式化的Ant代码到另一个答案,只在一个答案)
6. 我不认为Eclipse的本质提供了一种在目录级做到这一点(但我不知道)。 你可以有生成的文件去到一个单独的Java项目,并控制该特定项目的警告。 我一般喜欢把自动生成的代码在一个单独的项目呢。
7. 您只能抑制警告在项目级别。但是,您可以配置你的问题选项卡从文件或软件包抑制警告。进入配置,并与“关于工作组:”工作范围。
8. 我做这几个ANTLR的语法,它生成一个Javaant。 Ant构建脚本添加@SuppressWarnings("all")一个Java文件,并@Override到另一个。 我可以看看它是如何准确地做,如果你有兴趣。
9. 在ANTLR 2的情况下,有可能通过appenidng抑制在生成的代码中的警告@SuppressWarnings在类声明中的语法文件之前,例如:{@SuppressWarnings("all")} class MyBaseParser extends Parser;
10. 这可以通过从构建路径中排除特定的目录来完成(下面的例子就是Eclipse 3.5) [1]调出Java构建路径 点击projectin包资源管理器 右击,属性 选择Java Build Path [2]将目录添加到排除 来源标签应包含项目源文件夹的详细信息 展开源文件夹,并找到了“排除:'属性 选择“排除:”,然后单击编辑 添加文件夹到添加/添加多个选项 单击Finish(完成),然后确定为Eclipse重建。
11. 该M2E生成这个小python脚本“补丁”.classpath文件并添加所需的XML标记开始与所有的源文件夹target/generated-sources。你可以从你的项目的根文件夹中运行它。你需要重新运行它时,在Eclipse从M2E重新生成。和所有风险自负,;-)#!/usr/bin/env python
from xml.dom.minidom import parse
import glob
import os
print('Reading .classpath files...')
for root, dirs, files in os.walk('.'):
for name in files:
if (name == '.classpath'):
classpathFile = os.path.join(root, name)
print('Patching file:' + classpathFile)
classpathDOM = parse(classpathFile)
classPathEntries = classpathDOM.getElementsByTagName('classpathentry')
for classPathEntry in classPathEntries:
if classPathEntry.attributes["path"].value.startswith('target/generated-sources'):
# ensure that the attributes tag exists
attributesNode = None;
for attributes in classPathEntry.childNodes:
if (attributes.nodeName == 'attributes'):
attributesNode = attributes
if (attributesNode == None):
attributesNode = classpathDOM.createElement('attributes')
classPathEntry.appendChild(attributesNode)
# search if the 'ignore_optional_problems' entry exists
hasBeenSet = 0
for node in attributesNode.childNodes:
if (node.nodeName == 'attribute' and node.getAttribute('name') == 'ignore_optional_problems'):
# it exists, make sure its value is true
node.setAttribute('value','true')
#print(node.getAttribute('name'))
hasBeenSet = 1
if (not(hasBeenSet)):
# it does not exist, add it
x = classpathDOM.createElement("attribute")
x.setAttribute('name','ignore_optional_problems')
x.setAttribute('value','true')
attributesNode.appendChild(x)
try:
f = open(classpathFile, "w")
classpathDOM.writexml(f)
print('Writing file:' + classpathFile)
finally:
f.close()
print('Done.')
其实任何程序都有一个入口,对java来说就是你要执行的那个具体类必须有一个main方法,就想你附件中提示的,一个静态共有的main方法。而看你写得的代码很有意思是定义了一个stud的类,这个类有静态方法,但居然在这个类之外又直接定义了一个私有类Person。我估计你那个编辑器运行的时候随机查找类的main方法,有时候认为当前类是Person去运行了所以提示Person找不到main方法。很简单,你吧Person定义在stud里面或者单独写一个文件定义Person类。
定义在stud里面你可以这样写
public class stud{
class Person{
private String name; //声明姓名属性
private int age; //声明年龄属性
public Person(){ //无参构造
}
public Person(String name,int age){ //取得信息的方法
this(); //在此处调用Person类中的无参构造方法
this.name=name;
this.age=age;
}
public String getInfo(){ return"姓名:"+name+"; 年龄:"+age; } //取得信息
}
public static void main(String[] args){
Person per=new Person("小张",23); //调用构造实例化对象
System.out.println(per.getInfo()); //取得信息
}
}
不影响程序的运行.
出现黄线警告的原因除了因为定义的变量或方法没有使用外。
还有就是对编写的代码不确定.
例如:
Vector vec = new Vector();
一般都会报黄线警告,因为Vector集合可以存放任何对象。所以并不确定里面存放的对象.那么就会给出黄线警告.