⭐ 欢迎来到虫虫下载站! | 📦 资源下载 📁 资源专辑 ℹ️ 关于我们
⭐ 虫虫下载站

📄 constructorthiscallbug.groovy

📁 大名鼎鼎的java动态脚本语言。已经通过了sun的认证
💻 GROOVY
字号:
/** * ConstructorThisCallBug.groovy * *     Test Script for the Jira issue: GROOVY-994. * * @author    Pilho Kim * @date      2005.08.05.06.21 */package groovy.bugspublic class ConstructorThisCallBug extends GroovyTestCase {    public void testCallA() {        println "Testing for a class without call()"        def a1 = new ConstructorCallA("foo")         def a2 = new ConstructorCallA(9)         def a3 = new ConstructorCallA()     }    void testCallB() {        println "Testing for a class with call()"        def b1 = new ConstructorCallB('bar')         def b2 = new ConstructorCallB(9)         def b3 = new ConstructorCallB()     }}public class ConstructorCallA {     public ConstructorCallA() {        this(19)               // call another constructor        println "(1) no argument consructor"    }     public ConstructorCallA(String a) {        println "(2) String value a = $a"    }     public ConstructorCallA(int a) {        this("" + (a*a))       // call another constructor        println "(3) int value a = $a"    } } public class ConstructorCallB {     public ConstructorCallB() {        println '1: no argument consructor'        this(19)              // call the method call()    }     public ConstructorCallB(String b) {        println """2: String value b = $b"""    }     public ConstructorCallB(int b) {        println """3: int value b = $b"""        this('' + (b + b))     // call the method call()    }     void call(Object o) {        println "Hello, $o"    } } 

⌨️ 快捷键说明

复制代码 Ctrl + C
搜索代码 Ctrl + F
全屏模式 F11
切换主题 Ctrl + Shift + D
显示快捷键 ?
增大字号 Ctrl + =
减小字号 Ctrl + -