Skip to content

Instantly share code, notes, and snippets.

View coolquad's full-sized avatar
🏠
Working from home

Zhenxiu coolquad

🏠
Working from home
View GitHub Profile
public class Animal {
private String name;
private int age;
public Animal() {
name = "Name " + System.currentTimeMillis();
age = (int) +System.currentTimeMillis();
}