« All Events
6 PM – Android Game Dev – Gamas
April 2 @ 6:00 pm - 7:00 pm
Today We Did
- We started Tic Tac Toe project
Homework
- Research in the Internet
- XML file
- XML elements
- XML attribute
- How to represent list in XML
- Create an XML file school_system.xml, that will contains student_list element and inside student_list element it will have a whole bunch of student element. Student element is a representation of Student class like below
public class Student {
/**
* private - visible only inside the class
* public - visible everywhere inside or outside the class
*/
private String name;
private int age;
private int grade;
}