深圳奥飞网络
深圳奥飞网络
  • 发布:2023-10-10 10:31
  • 更新:2023-10-19 23:50
  • 阅读:955

uts的递归问题

分类:uts
复制代码breathe():void{  
    // this.breatheCount = 0  
    if(this.breatheCount > 2){  
            return  
    }  
    this.breatheCount ++  
    this.breathe()  
},

这行代码,提示错误

复制代码error: Type checking has run into a recursive problem. Easiest workaround: specify types of your declarations explicitly‌  
// 错误:类型检查遇到递归问题。最简单的解决方法:显式指定声明的类型‌  

这个还需要怎么申明类型?

2023-10-10 10:31 负责人:无 分享
已邀请:

最佳回复

DCloud

DCloud

HBuilderX 3.93.2023101913-alpha 已修复。

  • 深圳奥飞网络 (作者)

    谢谢,已看到,更新日志里竟然还引用我的贴子,倍感荣幸

    2023-10-20 10:08

爱豆豆

爱豆豆 - 办法总比困难多

可以先用 class的写法先实现这个效果
使用:new breatheTemp(1).breathe()

复制代码class breatheTemp {  
        breatheCount = 0;  
        constructor(count:number) {  
                this.breatheCount = count;  
        }  
        breathe():void{    
            if(this.breatheCount > 2){    
        console.log('结束',this.breatheCount)  
                return;    
            }    
            this.breatheCount++;    
            this.breathe();    
        }  
    }
  • 爱豆豆

    breathe():any {

    new breatheTemp(this.breatheCount).breathe()

    }

    2023-10-10 11:50

  • 深圳奥飞网络 (作者)

    受教了,class里确实可以

    2023-10-10 16:33

DCloud_UNI_FXY

DCloud_UNI_FXY

已确认Bug,目前可以先不使用递归来绕过

爱豆豆

爱豆豆 - 办法总比困难多

复制代码breathe():any{    
    // this.breatheCount = 0    
    if(this.breatheCount > 2){    
            return  false  
    }    
    this.breatheCount ++    
    this.breathe()    
},

要回复问题请先登录注册

  • 标题 / 粗斜体
  • 代码片段
  • 超链接 / 图片 / 视频
  • 列表 / 引用

文章内容较多时,可以用标题分段 :

## 大标题 
### 小标题

斜体 / 粗体 :

**粗体** 
*斜体*
***粗斜体***

代码片段 :

``` javascript
代码片段
```

超链接 :

[链接文字](链接地址) 例: [百度](http://www.baidu.com)

图片 :

![图片说明](图片地址) 例: ![百度logo](http://www.baidu.com/img/bdlogo.gif)

视频 :

!![视频说明](视频地址) 例: !![优酷视频](http://youku.com)

有序列表 :

1. 123
2. 123
3. 123

无序列表 :

- 123
- 123
- 123

引用 : ( 双回车后结束引用 )

> 引用内容
引用内容
引用内容