Python class attribute and instance attribute usage analysis

Source: Internet
Author: User

This article analyzes the Python class attribute and instance attribute usage. Share to everyone for your reference. Specifically as follows:

Class attribute: Class name. property name

Instance properties: Instance. Property name

?

1 2 3 4 5 6 7 8 9 10 11-12 >>> class Test (): ... ver=1 >>> a=test () >>> test.x=8 >>> a.__dict__ {} >>&G T a.x 8 >>> a.x=9 >>> a.__dict__ {' x ': 9}

1. The properties of the class are the same, and once the class attribute is given, all instances will take this value.

2. The value of this property of each instance can vary.

3. The attribute of an instance is not given as shown, a.x can display the value of the property, but it is not in the namespace.

In order to add it to the namespace, you must explicitly assign the value.

?

1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19-20 Class Instant1 (object): Count=0 def __init__ (self): instant1.count=instant1.count+1 print "created instant" Def howmany ( Self): print Instant1.count Print Self.count class Instant2 (object): Count=0 def __init__ (self): print Self.count #print Instant2.count self.count=self.count+1 #Instant2. count=instant2.count+1 print "created instant" Def Howmany (self): Print Self.count Print Instant2.count

I hope this article will help you with your Python programming.

Contact Us

The content source of this page is from Internet, which doesn't represent Alibaba Cloud's opinion; products and services mentioned on that page don't have any relationship with Alibaba Cloud. If the content of the page makes you feel confusing, please write us an email, we will handle the problem within 5 days after receiving your email.

If you find any instances of plagiarism from the community, please send an email to: info-contact@alibabacloud.com and provide relevant evidence. A staff member will contact you within 5 working days.

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.