typescript 创建二维数组

Posted echolife

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了typescript 创建二维数组相关的知识,希望对你有一定的参考价值。

private mouseView: Mouse
private mouseArray: Array<Array<any>> = new Array<Array<any>>();

public createMouse(){
        this.mouseView = new Mouse();
        // 定义二维数组
        for(var i = 0;i < 3;i++){
            this.mouseArray[i] = [];
        }
        this.mouseArray.push([]);
        
        
        for(var i = 0;i < 3;i++){
            for(var j = 0;j <= 3; j++)
            {
                this.mouseArray[i][j] = this.mouseView.createMouse(300*j,300*i);
                this.addChild(this.mouseArray[i][j]);
                this.mouseArray[i][j].touchEnabled = true; 
            }
        }
        
        this.mouseArray[0][0].addEventListener(egret.TouchEvent.TOUCH_BEGIN,function(){
            this.removeChild(this.mouseArray[0][0]);
        },this);
」

 

以上是关于typescript 创建二维数组的主要内容,如果未能解决你的问题,请参考以下文章

读取 excel 并在 typescript 中填充二维数组

在 C++ 中动态创建二维数组时出现问题。这是代码。它不适用于某些特定条件

typescript Angular 2测试片段。代码库https://developers.livechatinc.com/blog/category/programming/angular-2/

当我映射和展平数组时,TypeScript 错误地出错?

typescript Angular最终版本的Angular 2测试片段。代码库https://developers.livechatinc.com/blog/category/programming

typescript Angular最终版本的Angular 2测试片段。代码库https://developers.livechatinc.com/blog/category/programming