首页 > 建站教程 > dart >  Dart编程实例 - 级联操作符 (..)正文

Dart编程实例 - 级联操作符 (..)

Dart编程实例 - 级联操作符 (..)

class Student {

   void test_method() {

      print("This is a  test method");

   }



   void test_method1() {

      print("This is a  test method1");

   }

}  

void main() {

   new Student()

   ..test_method()

   ..test_method1();

}