Java Oracle Documentation
Java Oracle Documentation
Java Oracle Documentation
Pour exécuter un code source Java, vous devez suivre ces étapes
:
cd Chemin\Vers\MonProjet
javac MonProgramme.java
java MonProgramme
C:\Users\21656\Desktop>javac Monprogramme.java
C:\Users\21656\Desktop>java Monprogramme
Hello, World!
Marwen,this is your first code java
Tricks:
System.out.println("marwen")=afficher et retourner a la ligne
System.out.println("marwen\n")=afficher et retourner a la ligne
System.out.print("marwen");=afficher
System.out.println("\tmarwen\n");\t=tab(empty beginning space)
System.out.print("marwen")
result:
marwen
marwen
System.out.println("\"marwen\"");"\******\" printing quotes.
System.out.print("marwen");
result:
"marwen"
marwen
System.out.println("\\marwen\\");
\marwen\
// This is a comment
/*
*this
*is
*a
*comment
*too
*/
Edit-->Find/Replace:nous permet de changer un texte par un
autre,chaque fois trouver dans le code.
int x=123;
int y=124;
System.out.println("new number is: "+x+" "+"or"+" "+y);
Un Exemple:
public class Main {
public static void main(String[] args) {
byte x=127;
int y=1616651495;
long z=516551651651651981L;
double u=10.23;
boolean b=true;
char c='@';
String s="marwen";
System.out.println("the variables are: "+x+" "+" "+y+"
"+z+" "+u+" "+b+" "+c+" "+s);
}
nommage de variables:
-pas de caractère spéciaux.
-pas d'espace
-commence obligatoirement par une lettre ou (_).
Par convention: si le nom de notre variable se compose de
plusieurs mot on utilise le "camel case" ;
ex:uneVariablePeuLongue
pour les classe on utilise le "pascal case"
ex: public class MainApp