|
NOTA: La traducción de esta documentación es un esfuerzo personal y voluntario, no es un documento oficial de Sun Microsystems
ni Oracle ni está patrocinado por ninguna de estas empresas. Los documentos originales (en inglés) están disponibles en:
http://java.sun.com/docs/books/tutorial/.
Dirija cualquier comentario, petición, felicitación, etc. a tutorialesjava_@RROBA_codexion.com. |
Si desea ayudar a mantener en funcionamiento esta web, colaborar con la traducción de estos documentos o necesita que se traduzca algĂșn capĂtulo en concreto puede realizar una donación directa mediante Paypal:
|
- What's wrong with the following program?
public class SomethingIsWrong { public static void main(String[] args) { Rectangle myRect; myRect.width = 40; myRect.height = 50; System.out.println("myRect's area is " + myRect.area()); } }- The following code creates one
Pointobject and oneRectangleobject. How many references to those objects exist after the code executes? Is either object eligible for garbage collection?... Point point = new Point(2,4); Rectangle rectangle = new Rectangle(point, 20, 20); point = null; ...- How does a program destroy an object that it creates?
Check your answers.
- Fix the program called
SomethingIsWrongshown in Question 1.
- Given the following class, called
NumberHolder, write some code that creates an instance of the class, initializes its two member variables, and then displays the value of each member variable.public class NumberHolder { public int anInt; public float aFloat; }