I’m not particularly stuck on this exercise. However, I do not understand Classes at all. Like whats the use of it, why is it written in such a way and so on. Right now, I’m just doing the exercise by copying, i honestly don’t understand what its trying to teach.
```
class Dog {
int age;
public Dog(int dogsAge) {
age = dogsAge;
}
Classes are mostly used as blueprints for objects
(sometimes they’re just used to group things together, without creating any instances)
So if you wanted to have car objects you’d have a class with fields for engine, wheels, brand, etc and you’d also have methods which implement the behaviour like driving or handling the locks