Diferencia entre revisiones de «Usuario:Lmorillas/modulo programacion/java»

De WikiEducator
Saltar a: navegación, buscar
 
(5 revisiones intermedias por el mismo usuario no mostrado)
Línea 8: Línea 8:
 
=== General ===
 
=== General ===
 
* [http://docs.oracle.com/javase/tutorial/ Documentación oficial Java]  
 
* [http://docs.oracle.com/javase/tutorial/ Documentación oficial Java]  
* [http://www.javahispano.org/portada/2011/7/5/java-basico-con-ejemplos.html Curso de Java Básico de pythonhispano]
+
* [http://www.javahispano.org/portada/2011/7/5/java-basico-con-ejemplos.html Curso de Java Básico de javahispano]
 
* [http://knuth.luther.edu/~bmiller/Java4Python/index.html  Java4Python programmers]  
 
* [http://knuth.luther.edu/~bmiller/Java4Python/index.html  Java4Python programmers]  
 
=== Cursos ===
 
=== Cursos ===
Línea 19: Línea 19:
 
* [http://fivedots.coe.psu.ac.th/Software.coe/J2ME/ J2ME]
 
* [http://fivedots.coe.psu.ac.th/Software.coe/J2ME/ J2ME]
 
* [http://fivedots.coe.psu.ac.th/Software.coe/LAB/JDBC JDBC]
 
* [http://fivedots.coe.psu.ac.th/Software.coe/LAB/JDBC JDBC]
 
 
}}
 
}}
  
  
{{Preconocimiento|
+
{{Conocimiento previo|
 
Title=Entorno|
 
Title=Entorno|
 
TOCdepth=2|
 
TOCdepth=2|
 
* Java: http://www.oracle.com/technetwork/java/javase/downloads/index.html
 
* Java: http://www.oracle.com/technetwork/java/javase/downloads/index.html
 
* Eclipse: http://www.eclipse.org/downloads/
 
* Eclipse: http://www.eclipse.org/downloads/
 +
* Aptana + JDT: https://wiki.appcelerator.org/display/tis/Installing+the+Java+Development+Tools
 
}}
 
}}
 +
 +
 +
{{Objetivos|
 +
Title=Diferencias con Python|
 +
TOCdepth=2|
 +
* Todo programa tiene que definir una clase y todo el código está dentro de una clase.
 +
* Todo tiene que tener un tipo asignado
 +
* Todo programa tiene que tener un método:
 +
public static void main(String[] args)
 +
* Java utiliza tipado estático
 +
}}
 +
 +
== Ejemplos ==
 +
* [[/ejemplos | Ejemplos]]
 +
 +
== Ejercicios ==
 +
* [[/ejercicios | Ejercicios ]]

Última revisión de 21:02 2 mar 2012


Road Works.svg Trabajo en proceso, espera cambios frecuentes. Tu ayuda y retroalimentación son bienvenidos.
Ver página de charlas.
Road Works.svg



Documentación




Entorno



Diferencias con Python

Icon objectives.jpg

Diferencias con Python

  • Todo programa tiene que definir una clase y todo el código está dentro de una clase.
  • Todo tiene que tener un tipo asignado
  • Todo programa tiene que tener un método:
public static void main(String[] args)
  • Java utiliza tipado estático




Ejemplos

Ejercicios