We have made a first foray into Java but it is essential we continue talking about fundamental concepts of OOP: objects and classes. These terms seem familiar resultarnos.
In daily life we can think of objects as an apple or a book and we can distinguish kinds of things such kinds of plants . However, the term programming and the term object class does not keep an exact correlation with the...
domingo, 24 de noviembre de 2013
CONCEPTO DE OBJETOS Y CLASES EN JAVA. DEFINICIÓN DE INSTANCIA
Posted by Unknown on 7:57
Hemos realizado una primera incursión en Java pero para proseguir se nos hace indispensable hablar de conceptos fundamentales de la programación orientada a objetos: objetos y clases. Estos términos parecen resultarnos familiares
En la vida diaria podemos pensar en objetos como una manzana o un libro y podemos distinguir clases de cosas: por ejemplo clases de...
viernes, 22 de noviembre de 2013
Separators in Java
Posted by Unknown on 7:41
Java has 6 types of separators, these are:[] Brackets: Used to declare these arrangements and values. {} Braces: Used to define a block of code and create an array with initial values.() Parentheses: Used to call methods, define the origin of some expression, establish conditions under control structures, among other functions. ; The semicolon: Used to chain statements inside a for loop...
Los separadores en Java
Posted by Unknown on 7:39
Java posee 6 tipos de separadores, estos son:[] Los corchetes: Se utilizan para declarar arreglos y valores de éstos.
{} Las llaves: Se utilizan para definir un bloque de código y crear un arreglo con sus valores iniciales.
() Los paréntesis: Se utilizan para llamar métodos, definir la procedencia de alguna expresión, establecer condiciones en las estructuras de control, entre otras funciones.
;...
Comments on Java
Posted by Unknown on 7:36
Comments in java programs serve to explain the lines of code, these comments are "invisible" to the compiler and therefore do not affect the program.Comments to a single line of text: To use this type of comment should be placed a double slash (/ /) at the beginning of the line.Review of one or more lines: To use this type of comment should place a + slash asterisk (/ *) at the beginning of the first...
Comentarios en Java
Posted by Unknown on 7:35
Los comentarios en programas java sirven para explicar las lineas de código, éstos comentarios son "invisibles" para el compilador y por ende no influyen en el programa.Comentario para una sola linea de texto: Para utilizar este tipo de comentario se debe colocar un doble slash (//) al principio de la linea.
Comentario de una o más lineas: Para utilizar este tipo de comentario se debe colocar un...
miércoles, 20 de noviembre de 2013
pseudocode
Posted by Unknown on 9:30
It is a specification language algorithms. The use of such language makes final encoding step (ie , the translation to a programming language ) relatively easy.The
pseudocode born as a language similar to natural language and was a
basically represent mediopara control structures structured programming.
A first draft is considered , since the pseudo must subsequently translated to a programming...
PSEUDOCODIGO
Posted by Unknown on 9:27
Es un lenguaje
de especificación de algoritmos. El uso de tal lenguaje hace
el paso de codificación final (esto es, la traducción
a un lenguaje de programación) relativamente fácil.
El pseudocódigo nació
como un lenguaje similar al lenguaje natural y era un mediopara
representar...
Suscribirse a:
Entradas (Atom)
CONCEPT OF OBJECTS AND CLASSES IN JAVA. INSTANCE DEFINITION