Benutzer-Werkzeuge

Webseiten-Werkzeuge


java:start

Java

Hello World

HelloWorld.java
public class HelloWorld {
	public static void main(String[] args) {
		System.out.println("Hello World!");
	}
}

"Hello World"-Beispiel bei GitHub

Constructor

Constructor überladen

public class Foo {
	//
	// Variables
	//
 
	private String foo;
	private String bar;
 
	//
	// Constructor
	//
 
	public Foo(String foo) {
		this(foo, "World");
	}
 
	public Foo(String foo, String bar) {
		this.foo	= foo;
		this.bar	= bar;
	}
}

Zahlen

String als Int parsen

int number = Integer.parseInt("0");

Collections

foreach-Schleife über eine Collection

Collection<String> phrases = foo.getCollectionOfString();
 
for (String phrase : phrases) {
	// Code
}

Tutorials

Kostenpflichtige Tutorials

java/start.txt · Zuletzt geändert: 2015-03-09 19:01 von a.kamola