Typescript中方法重載的實現


Typescript中方法重載的實現

function getInfo(name:string):string;
function getInfo(age:number):string;
function getInfo(str:any):any{
    if (typeof str=='string') {
        return '我叫---'+str
        
    }
    if (typeof str=='number') {
        return '我的年齡---'+str
    }
}

console.log(getInfo('張三'))
console.log(getInfo(18))

  運行結果:


免責聲明!

本站轉載的文章為個人學習借鑒使用,本站對版權不負任何法律責任。如果侵犯了您的隱私權益,請聯系本站郵箱yoyou2525@163.com刪除。



 
粵ICP備18138465號   © 2018-2025 CODEPRJ.COM