ICode9

精准搜索请尝试: 精确搜索
首页 > 其他分享> 文章详细

TypeScript之调用栈

2019-12-30 23:55:45  阅读:244  来源: 互联网

标签:function index TypeScript CallStackTool number 调用 caller func


class CallStackTool{
    private static index:number = 0;
    public static printCallStack (count:number , simple: boolean = true):void {
        let caller:Function = arguments.callee.caller;
        let i:number = 0;
        count = count || 10;
        CallStackTool.index ++;
        if( CallStackTool.index > 500 )  CallStackTool.index = 1;
        console.log(`***-----------------${CallStackTool.index}Start-----------------------  **`);
        while (caller && i < count) {
            console.log(`${(i+1)}: \n ${CallStackTool.getFunctionName(caller,simple)}`);
            caller = caller.caller;
            i++;
        }
        console.log(`***-----------------${CallStackTool.index}End-----------------------  **`);
    }

    private static getFunctionName(func:any,simple: boolean):string {
        if( simple ){
            let name:any;
            if ( typeof func == 'function' ) {
                name =  ('' + func).match(/function\s*\((\s*\$*\S+\s*,)*(\s*\$*\S+\s*)?\)/g);
                let $result: string = name && name[0];
                if( $result != `function ()` ){
                    return $result;
                }
            }
        }
        return func.toString();
    }
}

测试代码:

class Test2CallStack{

    public add( i:number, b:number ):number{
        CallStackTool.printCallStack(2,true);
        return i +b;
    }

    public a( c:number, q:number ): number{
        return this.add(c,q);
    }

    public print() : void{
        console.log(`${this.a(1,1)}`);
    }
}

开始测试:
TypeScript之调用栈

结果:
TypeScript之调用栈

所以,尽量给function的参数取一些好的名字.
另外一点 , 不会出现function()这样的打印 , 出现没有参数的function , 我会将方法体内容也打印出来

如果需要把每一个function的方法体的内容打印出来CallStackTool.printCallStack(2,false), 将第二个参数设置未false

标签:function,index,TypeScript,CallStackTool,number,调用,caller,func
来源: https://blog.51cto.com/aonaufly/2463229

本站声明: 1. iCode9 技术分享网(下文简称本站)提供的所有内容,仅供技术学习、探讨和分享;
2. 关于本站的所有留言、评论、转载及引用,纯属内容发起人的个人观点,与本站观点和立场无关;
3. 关于本站的所有言论和文字,纯属内容发起人的个人观点,与本站观点和立场无关;
4. 本站文章均是网友提供,不完全保证技术分享内容的完整性、准确性、时效性、风险性和版权归属;如您发现该文章侵犯了您的权益,可联系我们第一时间进行删除;
5. 本站为非盈利性的个人网站,所有内容不会用来进行牟利,也不会利用任何形式的广告来间接获益,纯粹是为了广大技术爱好者提供技术内容和技术思想的分享性交流网站。

专注分享技术,共同学习,共同进步。侵权联系[81616952@qq.com]

Copyright (C)ICode9.com, All Rights Reserved.

ICode9版权所有