基本信息
源码名称:java 入门级示例源码(类 继承 入门示例)
源码大小:0.02M
文件格式:.rar
开发语言:Java
更新时间:2018-12-21
   友情提示:(无需注册或充值,赞助后即可获取资源下载链接)

     嘿,亲!知识可是无价之宝呢,但咱这精心整理的资料也耗费了不少心血呀。小小地破费一下,绝对物超所值哦!如有下载和支付问题,请联系我们QQ(微信同号):813200300

本次赞助数额为: 2 元 
   源码介绍

/*
 * To change this license header, choose License Headers in Project Properties.
 * To change this template file, choose Tools | Templates
 * and open the template in the editor.
 */
package javaapp913;

import java.util.ArrayList;

/**
 *
 * @author wangwei
 */
public class Son extends Father{
    
    private String Name;
    private Father father;
    private String Country;
    
    public Son()
    {
        int r1 = (int) (Math.random() * 10000)   25000;
        int r2 = (int) (Math.random() * 10000)   25000;
        this.Name = "张" (char)r1 (char)r2;
    }
    
    public Son(Father father)
    {
        this.father = father;
        int r1 = (int) (Math.random() * 10000)   25000;
        int r2 = (int) (Math.random() * 10000)   25000;
        this.Name = father.getFirstName() (char)r1 (char)r2;
        this.Country=father.getCountry();
        father.addSon(this);
    }
    
    public void setFName(String fn){
        String old = Name.substring(1);
        Name = fn old;
    }
    
    @Override
    public String getName(){
    	 return this.Name;
    }
    @Override
    public String getCountry() {
        return this.Country;
    }
}