コード例 #1
0
 public PelicanPerson(PelicanPerson p) {
   this(p.getPelican());
   this.id = p.id;
   this.father = p.father;
   this.mother = p.mother;
   this.sex = p.sex;
   this.affection = p.affection;
   this.name = p.name;
   this.generation = p.generation;
   this.genotype[0] = p.genotype[0];
   this.genotype[1] = p.genotype[1];
 }