Groovy~Groovy的面向对象
Groovy类是数据的集合和对该数据进行操作的方法Groovy中的类声明了该类定义的对象的状态(数据)和行为class Student { int StudentID String StudentName static void main(String[] args) { Student st = new Student() st.StudentID = 1 st.StudentName = "Joe" }}二