You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardexpand all lines: Classes/README.md
+1-2
Original file line number
Diff line number
Diff line change
@@ -21,8 +21,7 @@ Person x = new Person();
21
21
### from static methods. A static method is attached to a class rather than an instance of a class / an object. When wanting to use a static method of the class
22
22
### unlike an instance method, it has to declare an instance of the class in order for it to use the instance method. A static method can use the he method as soon
23
23
### as it wants. We create instances of the class which create us branches. These branches are referred to as objects. Anytime we create a method within the class.
24
-
### we create an instance of the class, the method we created is made available for use to us. An instance method is the complete opposite of a static method. An
25
-
### instance method is attached to the instances.
24
+
### we create an instance of the class, the method we created is made available for use to us. An instance method is the complete opposite of a static method. An instance method is attached to the instances.
0 commit comments