posts - 128,comments - 20,views - 21万

作者:@佑之以航
本文为作者原创,转载请注明出处:https://www.cnblogs.com/yzyh/p/10305972.html


        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   佑之以航  阅读(76)  评论(0编辑  收藏  举报
努力加载评论中...

点击右上角即可分享
微信分享提示