|
@@ -135,7 +135,7 @@ class Bird : public QWidget
|
135
|
135
|
|
136
|
136
|
---
|
137
|
137
|
|
138
|
|
-Once the object is created, its methods provide the only way to change its attributes, to obtain information about them, or to compute with them. This is why the set of methods is commonly called the *interface*. The methods are the interface between the object’s user and its content.
|
|
138
|
+Once the object is created, its methods provide the only way to change its attributes, to obtain information about them, or do computations with them. This is why the set of methods is commonly called the *interface*. The methods are the interface between the object’s user and its content.
|
139
|
139
|
|
140
|
140
|
In general, in each class the prototypes of the methods are defined to construct the objects, and to search, manipulate and store the data. The following is a general format of a method prototype:
|
141
|
141
|
|