Hallo !
Ich versuche mit Net beans zu programmieren aber ich schaffe es nicht ich will HelloWorldApp schreiben.
Zuerst habe ich das Project erstellt dann kommt das :
/*
* To change this template, choose Tools | Templates
* and open the template in the editor.
*/
package helloworldapp;
/**
*
* @author 123
*/
public class HelloWorldApp {
/**
* @param args the command line arguments
*/
public static void main(String[] args) {
// TODO code application logic here
}
}
Aber beim Tutorial steht ich muss da etwas noch dazuhinfügen
das :
Adding Code to the Generated Source File
Because you have left the Create Main Class checkbox selected in the New Project wizard, the IDE has created a skeleton class for you. You can add the "Hello World!" message to the skeleton code by replacing the line:
// TODO code application logic here
with the line:
System.out.println("Hello World!");
Save the change by choosing File > Save.
The file should look something like the following:
/*
* To change this template, choose Tools | Templates
* and open the template in the editor.
*/
package helloworldapp;
/**
*
* @author Sonya Bannister
*/
public class HelloWorldApp {
/**
* @param args the command line arguments
*/
public static void main(String[] args) {
System.out.println("Hello World!");
}
}
Ich versteh das nicht ich habe es auf Deutsch übersetzt aber ich verstehe das nicht vieleicht könnt ihr mir helfen.
Danke
netbeans Gast |