class GlobalStandard {
            GlobalVoltage(){
                return '全球标准电压330V'
            }
        }

        class ChinaStandard {
            constructor(){
                this.globalstandard = new GlobalStandard()
            }
            ChinaVoltage(){
                let standard = this.globalstandard.GlobalVoltage()
                return `${standard} - 转换器 --中国标准电压220V`
            }
        }

        //测试
        let target = new ChinaStandard()
        let res = target.ChinaVoltage()
        console.log(res)// 全球标准电压330V - 转换器 --中国标准电压220V
posted on 2019-01-22 20:44  佑之以航  阅读(76)  评论(0编辑  收藏  举报