ZenScript main repository
選択できるのは25トピックまでです。 トピックは、先頭が英数字で、英数字とダッシュ('-')を使用した35文字以内のものにしてください。

interfaces.zs 303B

1234567891011121314151617
  1. public interface MyInterface {
  2. interfaceMethod() as string;
  3. }
  4. public class MyClass {
  5. val name as string;
  6. public this(name as string) {
  7. this.name = name;
  8. }
  9. public implements MyInterface {
  10. interfaceMethod() => "InterfaceMethod " + name;
  11. }
  12. }
  13. println(new MyClass("hello").interfaceMethod());