最赞回答 / 慕哥6288165
我终于解决了,最终自己解决的,发现16.5换了一个位置,之前有人说是什么配置,害我走了弯路,耽误了最少好几十分种,答案我已经写到自己的博客了,截图都在里面,http://blog.csdn.net/kimizhou_blog/article/details/75751233
2017-07-22
public class HelloWorld {
// 定义静态变量,保存班级名称
String className = "JAVA开发一班";
public static void main(String[] args) {
HelloWorld p1 = new HelloWorld();
// 访问静态变量,输出班级名称
System.out.println( p1.className );
}
}
// 定义静态变量,保存班级名称
String className = "JAVA开发一班";
public static void main(String[] args) {
HelloWorld p1 = new HelloWorld();
// 访问静态变量,输出班级名称
System.out.println( p1.className );
}
}
2017-07-22
System.out.println("姓名:" + name + "\n加分后的成绩:" + mi.getScore());
2017-07-22
package com.Abstract;
public class main {
public static void main(String[] args) {
// TODO Auto-generated method stub
Shape retangle=new Retangle();
retangle.Lounds();
retangle.Squarle();
Shape circle= new Circle();
circle.Squarle();
circle.Lounds();
}
}
public class main {
public static void main(String[] args) {
// TODO Auto-generated method stub
Shape retangle=new Retangle();
retangle.Lounds();
retangle.Squarle();
Shape circle= new Circle();
circle.Squarle();
circle.Lounds();
}
}
2017-07-21