Advertisement
Fhernd

Panda.cs

Aug 10th, 2015
445
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
C# 0.35 KB | None | 0 0
  1. class Panda
  2. {
  3.     public string Nombre;            // Campo de instancia
  4.     public static int Poblacion;        // Campo estático
  5.    
  6.     // Constructor
  7.     public Panda(string n)
  8.     {
  9.         Nombre = n;            // Asignación al campo de instancia
  10.         Poblacion = Poblacion + 1;    // Incremento al campo estático Población
  11.     }
  12. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement