码迷,mamicode.com
首页 > 编程语言 > 详细

typescript 创建二维数组

时间:2018-06-20 21:11:32      阅读:1154      评论:0      收藏:0      [点我收藏+]

标签:TE   create   class   type   二维   cti   listen   this   sea   

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 创建二维数组

标签:TE   create   class   type   二维   cti   listen   this   sea   

原文地址:https://www.cnblogs.com/echolife/p/9205363.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!