“Variabel salinan Python” Kode Jawaban

Variabel salinan Python

>>> import copy
>>> a = 0
>>> b = 2
>>> a = copy.copy(b)
>>> b += 1
>>> a
2
>>> b
3
Kodi4444

Salin Python Konstruktor

class Foo:
    def __init__(self, orig=None):
        if orig is None:
            self.non_copy_constructor()
        else:
            self.copy_constructor(orig)
    def non_copy_constructor(self):
        # do the non-copy constructor stuff
    def copy_constructor(self, orig):
        # do the copy constructor

a=Foo()  # this will call the non-copy constructor
b=Foo(a) # this will call the copy constructor
Confused Cod

Jawaban yang mirip dengan “Variabel salinan Python”

Pertanyaan yang mirip dengan “Variabel salinan Python”

Lebih banyak jawaban terkait untuk “Variabel salinan Python” di Python

Jelajahi jawaban kode populer menurut bahasa

Jelajahi bahasa kode lainnya