adding spliterator

This commit is contained in:
NKaushik89
2019-07-28 11:13:54 +05:30
committed by GitHub
parent 3ce74252b4
commit a7d8ac59af
5 changed files with 170 additions and 0 deletions

View File

@@ -0,0 +1,15 @@
package data;
public class Student {
String name;
int age;
public Student(String name, int age) {
this.name = name;
this.age = age;
}
public int getAge() {
return age;
}
}