Präsentation herunterladen
Die Präsentation wird geladen. Bitte warten
Veröffentlicht von:Erdmut Leidner Geändert vor über 10 Jahren
1
Prof. Dr.-Ing. habil. B. Steinbach - Informatik / Softwaretechnologie und Programmierungstechnik - Institut für Informatik Verteilte Software - Java - Einführung 1 Eigenschaften von Java –Bytecode (p-Code) –plattformenunabhängig –objektorientiert –Sicherheit –Threads –Grafik –netzwerkfähig –modular –Einbinden von Routinen anderer Programmiersprachen
2
Prof. Dr.-Ing. habil. B. Steinbach - Informatik / Softwaretechnologie und Programmierungstechnik - Institut für Informatik Verteilte Software - Java - Einführung 2 Java Applikation Java Bytecode (.class) Java Quellprogramm (.java) Programmablauf Java Compiler (javac) Java Interpreter (java)
3
Prof. Dr.-Ing. habil. B. Steinbach - Informatik / Softwaretechnologie und Programmierungstechnik - Institut für Informatik Verteilte Software - Java - Einführung 3 Java - Applet Java Bytecode (.class) Java Quellprogramm (.java) Programmablauf Java Compiler (javac) Applet-Viewer (appletviewer) HTML Datei (.html) Programmablauf Browser (netscape)
4
Prof. Dr.-Ing. habil. B. Steinbach - Informatik / Softwaretechnologie und Programmierungstechnik - Institut für Informatik Verteilte Software - Java - Einführung 4 // Mein erstes Java Programm public class hello_a { public static void main(String args []) { int i; for (i=0; i<3; i++) System.out.println("Hello new Java World! " + i); } hello_a.java C:>java hello_a Hello new Java World! 0 Hello new Java World! 1 Hello new Java World! 2
5
Prof. Dr.-Ing. habil. B. Steinbach - Informatik / Softwaretechnologie und Programmierungstechnik - Institut für Informatik Verteilte Software - Java - Einführung 5 C:>appletviewer DemoHello.html
6
Prof. Dr.-Ing. habil. B. Steinbach - Informatik / Softwaretechnologie und Programmierungstechnik - Institut für Informatik Verteilte Software - Java - Einführung 6 // Mein erstes Java Applet (DemoHello) import java.applet.Applet; import java.awt.Graphics; public class DemoHello extends Applet { public void paint (Graphics g) { g.drawString ("Hello Java World!", getSize().width/4, getSize().height/2); g.drawOval( getSize().width/10, getSize().height/10, getSize().width/10*8, getSize().height/10*8 ); } DemoHello <applet code="DemoHello.class" width=300 height=150> DemoHello.java DemoHello.html
Ähnliche Präsentationen
© 2024 SlidePlayer.org Inc.
All rights reserved.