在java中的输出怎么是红色的字(黑色字体是正常的)?

packagefuture;abstractclassPerson{privateStringname;privateintage;publicPerson(String... package future;
abstract class Person{
private String name;
private int age;
public Person(String name, int age) {
this.name=name;
this.age=age;
}
public String getName() {
return name;
}
public void setName(String name) {
this.name = name;
}
public int getAge() {
return age;
}
public void setAge(int age) {
this.age = age;
}
public abstract void want();
}
class Student extends Person{

private int score;
public int getScore() {
return score;
}
public void setScore(int score) {
this.score = score;
}

public Student(String name, int age,int score) {
super(name, age);
this.score=score;
}
public void want() {
System.err.println("姓名:"+getName()+" 年龄:"+getAge()+" 成绩:"+getScore());
}

}
class Worker extends Person{

private int money;
public int getMoney() {
return money;
}
public void setMoney(int money) {
this.money = money;
}
public Worker(String name, int age,int money) {
super(name, age);
this.money=money;
}
public void want() {
System.err.println("姓名:"+getName()+" 年龄:"+getAge()+" 成绩:"+getMoney());
}

}
public class D01 {
public static void main(String[] args) {
Student s=new Student("熊明", 13, 100);
s.want();
Worker w=new Worker("大明", 43, 6000);
w.want();
}
}
展开
 我来答
雪飞潇潇
推荐于2017-10-04 · TA获得超过6275个赞
知道大有可为答主
回答量:1968
采纳率:91%
帮助的人:872万
展开全部

正常的输出语句 ...out.... 输出普通的字符串

System.out.println("-----字符串-----");//输出黑色的字

问题中的输出语句....err...  输出错误或者异常反馈的字符串, ide等为了提醒所以是醒目的红色文字

System.err.println("-----字符串-----");//输出红色的字
推荐律师服务: 若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询

为你推荐:

下载百度知道APP,抢鲜体验
使用百度知道APP,立即抢鲜体验。你的手机镜头里或许有别人想知道的答案。
扫描二维码下载
×

类别

我们会通过消息、邮箱等方式尽快将举报结果通知您。

说明

0/200

提交
取消

辅 助

模 式