当前位置:  开发笔记 > 编程语言 > 正文

仅在函数或构造函数实现中允许参数初始化

如何解决《仅在函数或构造函数实现中允许参数初始化》经验,为你挑选了1个好方法。



1> basarat..:

因为abstract函数不能具有函数,bodies并且默认参数是只有在具有函数主体的情况下才能实现的东西。

允许:

abstract class Atom {
    abstract foo(x:any);
}

错误:

abstract class Atom {
    abstract foo(x:any=null); // Cannot have an implementation
}

错误:

abstract class Atom {
    abstract foo(x:any){ // Error cannot have implementation
    }
}

允许:

abstract class Atom {
    abstract foo(x?:any);
}

推荐阅读
mylvfamily
这个屌丝很懒,什么也没留下!
DevBox开发工具箱 | 专业的在线开发工具网站    京公网安备 11010802040832号  |  京ICP备19059560号-6
Copyright © 1998 - 2020 DevBox.CN. All Rights Reserved devBox.cn 开发工具箱 版权所有