一直都学BASIC长大的我,突然接触java着实有点儿不适应,Visual Basic我是没学过的,所以应该说第一次接触OO语言,面向对象,到底是什么概念?总的来说就是比较贴近人类的生活,世界是由事物构成的,抽象化之后就是对象,而对象又是个大的集合某一个实际存在的实体,这个集合就是类(Java中的class)——写的太白白了,请不要笑我,毕竟在此的都有初次接触java的时候,而成长为java高手也是失败和经验累计起来的。
再说大家普遍接触到的第一个application例子:Hello World
- public class helloworld{
- public static void main(String args[])
- {
- try{
- System.out.println("helloworld!");
- System.out.println("press any key to continue..");
- System.in.read();
- }catch(Exception e){}
- }
- }
复制代码
首先是什么?
先把文件保存为helloworld.java,然后配置好jdk的path和classpath路径,可忙了一下午怎么都没配好,于是把copy helloworld.java到jdk/bin目录,再cd到此目录下cmd运行javac+java之后才正式看到了
helloworld!
press any key to continue..
虽然累,可心情还是非常激动的,毕竟我手下的第一个java application运行出来了!
接着是第二个applet,出乎意料,我的第一个applet在一分钟内就诞生了 :arrow:
- import java.awt.*;
- import java.applet.Applet;
- public class HelloApplet extends Applet
- {
- String s;
- public void init(){
- String temps;
- temps=getParameter("name");
- s="everyone";
- if(temps!=null)
- {
- s=temps;
- }
- }
- public void paint(Graphics g)
- {g.drawString("hello,"+s,size().width/3,size().height/2);
- }
- }
复制代码
html可是我的强项,于是成果出来了
- <html>
- <head>
- <title>
- me first applet
- </title>
- </head>
- <body>
- <applet code="HelloApplet.class" width=160 height=120">
- <paramname=name value="everyone">
- </applet>
- </body>
- </html>
复制代码
|
|