Instance Classes
What are they
Instance classes are classes that are called as objects. These classes have certain things unique to them such as constructors.
Creating class objects (instance classes)
Objects are similar to variables in that they hold values and data. Similar to the String data type, they are also reference types and can hold methods. You can create these classes similar to creating a variable as well. Here is the Java syntax:
Constructors (Only for instance classes)
Class constructors are methods that run once automatically when an object of that class object is created. Class constructors allow you to add parameters, allowing for more versatility with class objects.
Creating class constructors
Declaring a constructor is similar to declaring a class method with parameters, the only difference is that you don't declare a return type and the constructor must have the same name as the class, this is because they never return anything. Constructors are usually used to assign variables to certain values. Here is an example of creating a constructor in a new example
class that assigns exampleInt
to a given parameter:
One thing in the code above that you may not know is the this
identifier. The this
identifier allows you to refer to variables of the same name outside of the scope of a method.
Scope refers to the region of code where a piece of data (like a variable) can be used since variables or parameters instantiated inside a method cannot be directly accessed from outside the method's { } brackets:
Using constructors
Using class constructor parameters is basically the same as using method parameters. This is because all you have to do is put your values inside the parentheses (). Here is an example of the example
class object ex
:
Last updated