Advertisement
Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- class Panda
- {
- public string Nombre; // Campo de instancia
- public static int Poblacion; // Campo estático
- // Constructor
- public Panda(string n)
- {
- Nombre = n; // Asignación al campo de instancia
- Poblacion = Poblacion + 1; // Incremento al campo estático Población
- }
- }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement