Class Attributes
Attributes are some variables inside the class that describe each object. Let’s demonstrate it with two classes – Rectangle and Student.
We can represent Rectangle by its height and width. Add these Attributes to the class definition:
1234class Rectangle{ height; width; }
If you need to describe student in some way, you can create class Student with attributes like, for example, name and university.
1234class Student{ name; university; }
Swipe to start coding
Add more attributes to the class Student: age and gpa variables.
Solution
Merci pour vos commentaires !
single
Demandez à l'IA
Demandez à l'IA
Posez n'importe quelle question ou essayez l'une des questions suggérées pour commencer notre discussion
Génial!
Completion taux amélioré à 7.69
Class Attributes
Glissez pour afficher le menu
Attributes are some variables inside the class that describe each object. Let’s demonstrate it with two classes – Rectangle and Student.
We can represent Rectangle by its height and width. Add these Attributes to the class definition:
1234class Rectangle{ height; width; }
If you need to describe student in some way, you can create class Student with attributes like, for example, name and university.
1234class Student{ name; university; }
Swipe to start coding
Add more attributes to the class Student: age and gpa variables.
Solution
Merci pour vos commentaires !
single