1 / 6

OOP met Java

OOP met Java. Sessie 1. Voorbeeld Java code. public class HelloWorld { public static void main(String[] args ) { System.out.println ("Hello, world!"); } }. Structuur Java. Broncode (via editor) Bytecode (via compiler)  platform onafh .

vida
Download Presentation

OOP met Java

An Image/Link below is provided (as is) to download presentation Download Policy: Content on the Website is provided to you AS IS for your information and personal use and may not be sold / licensed / shared on other websites without getting consent from its author. Content is provided to you AS IS for your information and personal use only. Download presentation by click this link. While downloading, if for some reason you are not able to download a presentation, the publisher may have deleted the file from their server. During download, if you can't get a presentation, the file might be deleted by the publisher.

E N D

Presentation Transcript


  1. OOP met Java Sessie 1

  2. Voorbeeld Java code public class HelloWorld { public static void main(String[] args) { System.out.println("Hello, world!"); } }

  3. Structuur Java • Broncode (via editor) • Bytecode (via compiler)  platform onafh. • Machinecode (via JVM)  platform afh. • JVM (JRE) in elk OS/browser beschikbaar als plug-in of zelfstandig programma

  4. Wat heb je nodig? • Compiler  zit in Java Software Development Kit (SDK of JDK) • Geïntegreerde ontwikkelomgeving (IDE)  bijvoorbeeld Jcreator • De IDE maakt gebruik van de JDK • Let op: er is verschil tussen JDK en JRE! • http://www.oracle.com/technetwork/java/javase/downloads/index-jsp-138363.html

  5. Wat heb je nodig? • "What Java Do I Need?" You must have a copy of the JRE (Java Runtime Environment) on your system to run Java applications and applets. To develop Java applications and applets, you need the JDK (Java Development Kit), which includes the JRE.

  6. Installeren • Installeer de juiste JDK + documentatie (van Oracle) • Installeer de IDE Jcreator (van CD of www) • Lees de handleiding van Jcreator (van CD)  workspace, project, application, sourcecode

More Related