新人贴。。不只有没有专门给新人发帖的地方。。皮厚点先发这里哈
我很感兴趣编程,但一直都没有机会正式的入门学,现在自己看视频学 不懂的东西还请高手有时间指教下public class myfirstapp {
int eyes = 2;
int legs = 2;
int ears = 2;
void look(){
System.out.println("look sex");
}
void run(){
System.out.println("run fist");
}
void lisent(){
System.out.println("lisent very things");
}
void info ()
{
System.out.println("I have " + eyes + " eyes and " +legs + " legs and " + ears +" eras ");
}
public static void main(String[] args ){
myfirstapp huige = new myfirstapp ();
huige.look();
huige.run();
huige.lisent();
huige.info();
}
}
这段代码中几个问题
1 {} () 里面写的内容分别是什么,
2 什么时候用封号
3 是不是定义一个方法都是用void
4 定义属性还有那些东西
5 myfirstapp huige = new myfirstapp (); 红的那行我不是很明白什么意思。 为什么有两个myfirstapp 。
6 public static void main(String[] args ) 这个叫做软件接入口。是什么意思 整句话怎么翻译。
谢谢