当前位置: 技术问答>java相关
一段超级简单的程序
来源: 互联网 发布时间:2015-08-07
本文导语: public class example { String st1; private int a1; public example(string st1 ,int a1) { this.st1=st1; this.a1=a1; } public void print(){ system.out.printin(st1+a1); } } public class myexample{ public static void main(stri...
public class example {
String st1;
private int a1;
public example(string st1 ,int a1) {
this.st1=st1;
this.a1=a1;
}
public void print(){
system.out.printin(st1+a1);
}
}
public class myexample{
public static void main(string[] args){
example hello=new example("hello,world!",999);//**********
hello.print;
}
}
注视星号的行有错误."not a pression statement"
请问是何缘故?
这段代码在jbuilder 中怎么检测?怎么运行?
谢
String st1;
private int a1;
public example(string st1 ,int a1) {
this.st1=st1;
this.a1=a1;
}
public void print(){
system.out.printin(st1+a1);
}
}
public class myexample{
public static void main(string[] args){
example hello=new example("hello,world!",999);//**********
hello.print;
}
}
注视星号的行有错误."not a pression statement"
请问是何缘故?
这段代码在jbuilder 中怎么检测?怎么运行?
谢
|
老兄 啊 你的代码 错的一塌糊涂 啊 惨不忍睹!
example.java
public class example {
String st1;
private int a1;
public example(String st1 ,int a1) {
this.st1=st1;
this.a1=a1;
}
public void print(){
System.out.println(st1+a1);
}
}
myexample.java
public class myexample{
public static void main(String[] args){
example hello=new example("hello,world!",999);//**********
hello.print();
}
}
是正确的
但是至少有20处不符合java 编码规范!!!!!
example.java
public class example {
String st1;
private int a1;
public example(String st1 ,int a1) {
this.st1=st1;
this.a1=a1;
}
public void print(){
System.out.println(st1+a1);
}
}
myexample.java
public class myexample{
public static void main(String[] args){
example hello=new example("hello,world!",999);//**********
hello.print();
}
}
是正确的
但是至少有20处不符合java 编码规范!!!!!
|
主要的问题是最后一句:hello.print;
应该这么写:hello.print();
你可以右击该文件,选择run
运行后,在消息窗口(Message pane)中能看到结果。
应该这么写:hello.print();
你可以右击该文件,选择run
运行后,在消息窗口(Message pane)中能看到结果。
|
怎么这么多public class myexample程序写的怎么这么夸张呀.
public class example {
String st1;
private int a1;
public example(string st1 ,int a1) {
this.st1=st1;
this.a1=a1;
}
public void print(){
system.out.printin(st1+a1);
}
public static void main(string[] args){
example hello=new example("hello,world!",999);//**********
hello.print;
}
}
public class example {
String st1;
private int a1;
public example(string st1 ,int a1) {
this.st1=st1;
this.a1=a1;
}
public void print(){
system.out.printin(st1+a1);
}
public static void main(string[] args){
example hello=new example("hello,world!",999);//**********
hello.print;
}
}
|
看你的程序,知道两个类在同一文件中。因此,有以下问题:
1.只能有一个类为public而且该类名为文件名,同时是运行的类(一般是有main函数的类);
2.Java取分大小写,否则出错;
3.函数与变量的调用不同,函数肯定有()、变量肯定没有();
4.编码太不规范,这是最要不得的。
1.只能有一个类为public而且该类名为文件名,同时是运行的类(一般是有main函数的类);
2.Java取分大小写,否则出错;
3.函数与变量的调用不同,函数肯定有()、变量肯定没有();
4.编码太不规范,这是最要不得的。
您可能感兴趣的文章:
本站(WWW.)旨在分享和传播互联网科技相关的资讯和技术,将尽最大努力为读者提供更好的信息聚合和浏览方式。
本站(WWW.)站内文章除注明原创外,均为转载、整理或搜集自网络。欢迎任何形式的转载,转载请注明出处。
本站(WWW.)站内文章除注明原创外,均为转载、整理或搜集自网络。欢迎任何形式的转载,转载请注明出处。