Difference between Class Variable and InstanceVariable in PythonObject-oriented programming lets the developers use variables at the class level or the instance level. Variables are necessary symbols standing in for a value we are utilizing in a program. Variables at the class level are known as class variables, whereas variables at the instance level are known as instance variables. Whenever we expect that the variables are about to be consistent across instances, or whenever we have to initialize a variable, then that variable can be defined at the class level. Whenever we look forward to the variables that will alter significantly across instances, then that variable can be defined at the instance level. Among various principles of software development is the principle of DRY, which is abbreviated for Don’t Repeat Yourself. This principle is focused towards restrictive replication within the code, and object-oriented programming obeys the DRY principle since it decreases redundancy. In the following tutorial, we will understand the class as well as instance variables in Object-Oriented Programming in the Python programming language. We will also discuss the fundamental differences between these two variables. So, let’s get begun. Understanding the Class VariablesClass Variables are declared inside the construction of class. Since these variables are owned by the class itself, they are shared by all class instances. They, therefore, will usually have the equivalent value for each instance unless we are utilizing the class variable in order to initialize a variable. Class Variables are defined outside of all the methods by convention, classically placed right under the header class and before the method of constructor and other functions. Let us consider the following syntax of a class variable. Syntax: The “var” variable is assigned the “xyz” value in the above snippet of code. We can define an object of the Class_name class (we will call it “myObj“) and print the variable with the help of the dot notation: Syntax: Let us consider the following example based on the concept of Class Variable. Example: Output: Name of the Animal: Lion Explanation: In the above snippet of code, we have defined a class as “Animal” and declared the class variable. We have then instantiated the class with the my_Animal object and printed the final value for the users. As a result, the program returns the value of the class variable. Let us try adding multiple class variables to the class and print their values. Example: Output: Name of the Animal: Lion This Animal is found in: Jungle This Animal is a: Carnivore Population of this Animal: 20000 approx. Explanation: In the above snippet of code, we have defined a class and declared some variables to the class. We have then instantiated the class and printed the required output for the users. We can observe that these class variables can contain any data type available to us in Python. As in the above program, we have strings and an integer. Moreover, we can also observe that the object of myAnimal is accessible to all the variables in the class and print them out when we execute the program. Class variables enable us to define variables upon the construction of the class. These variables and their corresponding values are then accessible to every object of the class. Understanding the Instance VariablesVariables that are owned by the class instances are known as instance variables. This statement implies that for every instance or object of a class, the instance variables are unlike. Different from class variables, instance variables are defined within the functions. The syntax to use the instance variables is shown below. Syntax: In the above snippet of code, var1 and var2 are instance variables. Let us consider an example based on Instance Variables Example: Output: Roll Number of the Student: 102 Name of the Student: Sam Age of the Student: 13 Explanation: In the above snippet of code, we have defined a Student class and defined some variables as id, name, and age passed as arguments within the constructor method. We have then instantiated the class and print the values of the instance variables for the users. As a result, we will obtain a made-up of the values of the variables initialized for the Instance of dBase. Instance variables, owned by the class objects, enable the developers to store different values in each instance assigned to those variables. Understanding the difference between the Class Variable and Instance VariableSince we have understood the basic concepts of both the variables and how these variables are used in the class, let us understand how class variable differs from the instance variable. The major differences between these two variables are described in the tabular format shown below:
|
原创文章,作者:ItWorker,如若转载,请注明出处:https://blog.ytso.com/263453.html