Static variable usage of python implementation class

Source: Internet
Author: User

Static variable usage of python implementation class

This article mainly introduces the usage of static variables in the python implementation class. The example analyzes the usage skills of static queues Based on arrays in Python. For more information, see

Static variables are used to implement a static queue in the class. arrays are used here. data inserted into the queue at any time is not directly related to the instance of the class.

?

1

2

3

4

5

6

7

8

9

10

11

12

13

_ Author _ = 'admin'

Class CaptchaImage:

Def queue (self, arr = list ()):

Return arr

Def InsertCode (self, code ):

Self. queue (). append (code)

If _ name __= = '_ main __':

C = CaptchaImage ()

C. InsertCode (1)

B = CaptchaImage ()

B. InsertCode (2)

Print (B. queue ())

Print (c. queue ())

The output result of code execution is:

?

1

2

[1, 2]

[1, 2]

I hope this article will help you with Python programming.

Note <>: For more exciting tutorials, please pay attention to the help house 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.