Hướng dẫn operator overloading and overriding in python - Quá tải và ghi đè toán tử trong python

Quá tải toán tử có nghĩa là đưa ra ý nghĩa mở rộng vượt ra ngoài ý nghĩa hoạt động được xác định trước của chúng. Ví dụ, toán tử + được sử dụng để thêm hai số nguyên cũng như tham gia hai chuỗi và hợp nhất hai danh sách. Nó có thể đạt được bởi vì toán tử ‘++bị quá tải bởi lớp Int và lớp str. Bạn có thể nhận thấy rằng cùng một toán tử hoặc chức năng tích hợp cho thấy hành vi khác nhau cho các đối tượng của các lớp khác nhau, điều này được gọi là quá tải toán tử. & NBSP; means giving extended meaning beyond their predefined operational meaning. For example operator + is used to add two integers as well as join two strings and merge two lists. It is achievable because ‘+’ operator is overloaded by int class and str class. You might have noticed that the same built-in operator or function shows different behavior for objects of different classes, this is called Operator Overloading. 

Thí dụ

Python3

print(1 + 2

3
GeeksFor
3
GeeksFor
3
GeeksFor
0

print(

3
GeeksFor
3
GeeksFor
3
GeeksFor
3+
3
GeeksFor
3
GeeksFor
3
GeeksFor
5
3
GeeksFor
3
GeeksFor
3
GeeksFor
0

print(

3
GeeksFor
3
GeeksFor
3
GeeksFor
9
ob2 is greater than ob1
0
ob2 is greater than ob1
1
3
GeeksFor
3
GeeksFor
3
GeeksFor
0

print(

3
GeeksFor
3
GeeksFor
3
GeeksFor
3
ob2 is greater than ob1
0
ob2 is greater than ob1
1
3
GeeksFor
3
GeeksFor
3
GeeksFor
0

Đầu ra

3
GeeksFor
12
GeeksGeeksGeeksGeeks

Làm thế nào để làm quá tải các toán tử trong Python? & NBSP; 

Hãy xem xét rằng chúng ta có hai đối tượng là biểu diễn vật lý của một lớp (loại dữ liệu do người dùng xác định) và chúng ta phải thêm hai đối tượng với toán tử '+' nhị phân, nó đã gây ra lỗi, vì trình biên dịch không biết cách thêm hai đối tượng . Vì vậy, chúng tôi xác định một phương thức cho toán tử và quá trình đó được gọi là quá tải toán tử. Chúng ta có thể quá tải tất cả các toán tử hiện có nhưng chúng ta có thể tạo ra một nhà khai thác mới. Để thực hiện quá tải toán tử, Python cung cấp một số chức năng đặc biệt hoặc chức năng ma thuật được tự động gọi khi nó được liên kết với toán tử cụ thể đó. Ví dụ: khi chúng ta sử dụng toán tử +, phương thức ma thuật __add__ sẽ tự động được gọi trong đó hoạt động cho toán tử + được xác định.

Quá tải toán tử nhị phân + trong python: & nbsp; 

Khi chúng tôi sử dụng toán tử trên các loại dữ liệu do người dùng xác định thì tự động chức năng đặc biệt hoặc hàm ma thuật được liên kết với toán tử đó sẽ được gọi. Thay đổi hành vi của toán tử cũng đơn giản như thay đổi hành vi của phương thức hoặc hàm. Bạn xác định các phương thức trong lớp và các nhà khai thác của bạn làm việc theo hành vi đó được xác định trong các phương thức. Khi chúng ta sử dụng toán tử +, phương thức ma thuật __add__ sẽ tự động được gọi trong đó hoạt động cho toán tử + được xác định. Do đó, thay đổi mã phương thức ma thuật này, chúng ta có thể cung cấp thêm ý nghĩa cho toán tử +. & NBSP;

Làm thế nào để người vận hành quá tải thực sự hoạt động?

Bất cứ khi nào bạn thay đổi hành vi của toán tử hiện có thông qua quá tải toán tử, bạn phải xác định lại chức năng đặc biệt được gọi tự động khi toán tử được sử dụng với các đối tượng. & NBSP;existing operator through operator overloading, you have to redefine the special function that is invoked automatically when the operator is used with the objects. 

Ví dụ: & nbsp;

Mã 1: & nbsp; & nbsp; 

Python3

ob2 is greater than ob1
9
ob1 is lessthan ob2
Not equal
0

ob1 is lessthan ob2
Not equal
1
ob1 is lessthan ob2
Not equal
2
ob1 is lessthan ob2
Not equal
3
ob1 is lessthan ob2
Not equal
4
ob1 is lessthan ob2
Not equal
5

ob1 is lessthan ob2
Not equal
6
ob1 is lessthan ob2
Not equal
4
ob1 is lessthan ob2
Not equal
8
ob1 is lessthan ob2
Not equal
9
This is the ~ operator, overloaded as binary operator.
0

ob1 is lessthan ob2
Not equal
1
ob1 is lessthan ob2
Not equal
2
This is the ~ operator, overloaded as binary operator.
3
ob1 is lessthan ob2
Not equal
4
This is the ~ operator, overloaded as binary operator.
5

ob1 is lessthan ob2
Not equal
6
This is the ~ operator, overloaded as binary operator.
7
ob1 is lessthan ob2
Not equal
4
ob1 is lessthan ob2
Not equal
8+ print1

print2

ob1 is lessthan ob2
Not equal
9 print41____10

print7

ob1 is lessthan ob2
Not equal
9 print42
3
GeeksFor
3
GeeksFor
3
GeeksFor
0

(2

ob1 is lessthan ob2
Not equal
9 print4
3
GeeksFor
3
GeeksFor
3
GeeksFor
3
3
GeeksFor
3
GeeksFor
3
GeeksFor
0

(7

ob1 is lessthan ob2
Not equal
9 print4
3
GeeksFor
3
GeeksFor
3
GeeksFor
5
3
GeeksFor
3
GeeksFor
3
GeeksFor
0

print13+ 15

print177____8 19

print+1

print+3

print+5

print+7

Đầu ra

3
GeeksFor
3
GeeksFor
3
GeeksFor

Làm thế nào để làm quá tải các toán tử trong Python? & NBSP;__add__( )”  and when the objects ob1 and ob2 are coded as “ob1 + ob2“, the special function is automatically called as ob1.__add__(ob2) which simply means that ob1 calls the __add__( ) function with ob2 as an Argument and It actually means A .__add__(ob1, ob2). Hence, when the Binary operator is overloaded, the object before the operator calls the respective function with object after operator as parameter.

Hãy xem xét rằng chúng ta có hai đối tượng là biểu diễn vật lý của một lớp (loại dữ liệu do người dùng xác định) và chúng ta phải thêm hai đối tượng với toán tử '+' nhị phân, nó đã gây ra lỗi, vì trình biên dịch không biết cách thêm hai đối tượng . Vì vậy, chúng tôi xác định một phương thức cho toán tử và quá trình đó được gọi là quá tải toán tử. Chúng ta có thể quá tải tất cả các toán tử hiện có nhưng chúng ta có thể tạo ra một nhà khai thác mới. Để thực hiện quá tải toán tử, Python cung cấp một số chức năng đặc biệt hoặc chức năng ma thuật được tự động gọi khi nó được liên kết với toán tử cụ thể đó. Ví dụ: khi chúng ta sử dụng toán tử +, phương thức ma thuật __add__ sẽ tự động được gọi trong đó hoạt động cho toán tử + được xác định.

Python3

Quá tải toán tử nhị phân + trong python: & nbsp;

Khi chúng tôi sử dụng toán tử trên các loại dữ liệu do người dùng xác định thì tự động chức năng đặc biệt hoặc hàm ma thuật được liên kết với toán tử đó sẽ được gọi. Thay đổi hành vi của toán tử cũng đơn giản như thay đổi hành vi của phương thức hoặc hàm. Bạn xác định các phương thức trong lớp và các nhà khai thác của bạn làm việc theo hành vi đó được xác định trong các phương thức. Khi chúng ta sử dụng toán tử +, phương thức ma thuật __add__ sẽ tự động được gọi trong đó hoạt động cho toán tử + được xác định. Do đó, thay đổi mã phương thức ma thuật này, chúng ta có thể cung cấp thêm ý nghĩa cho toán tử +. & NBSP;

ob1 is lessthan ob2
Not equal
6
ob1 is lessthan ob2
Not equal
4
ob1 is lessthan ob2
Not equal
8
ob1 is lessthan ob2
Not equal
9
This is the ~ operator, overloaded as binary operator.
0

ob1 is lessthan ob2
Not equal
1
ob1 is lessthan ob2
Not equal
2
This is the ~ operator, overloaded as binary operator.
3
ob1 is lessthan ob2
Not equal
4
This is the ~ operator, overloaded as binary operator.
5

ob1 is lessthan ob2
Not equal
6
This is the ~ operator, overloaded as binary operator.
7
ob1 is lessthan ob2
Not equal
4
ob1 is lessthan ob2
Not equal
8+ print1

print2

ob1 is lessthan ob2
Not equal
9 print41____10

print7

ob1 is lessthan ob2
Not equal
9 print42
3
GeeksFor
3
GeeksFor
3
GeeksFor
0

(2

ob1 is lessthan ob2
Not equal
9 print4
3
GeeksFor
3
GeeksFor
3
GeeksFor
3
3
GeeksFor
3
GeeksFor
3
GeeksFor
0

(7

ob1 is lessthan ob2
Not equal
9 print4
3
GeeksFor
3
GeeksFor
3
GeeksFor
5
3
GeeksFor
3
GeeksFor
3
GeeksFor
0

print

3
GeeksFor
3
GeeksFor
3
GeeksFor
43

print13+ 15  

Python3

ob2 is greater than ob1
9
ob1 is lessthan ob2
Not equal
0

ob1 is lessthan ob2
Not equal
1
ob1 is lessthan ob2
Not equal
2
ob1 is lessthan ob2
Not equal
3
ob1 is lessthan ob2
Not equal
4
ob1 is lessthan ob2
Not equal
5

ob1 is lessthan ob2
Not equal
6
ob1 is lessthan ob2
Not equal
4
ob1 is lessthan ob2
Not equal
8
ob1 is lessthan ob2
Not equal
9
This is the ~ operator, overloaded as binary operator.
0

ob1 is lessthan ob2
Not equal
1
ob1 is lessthan ob2
Not equal
2
This is the ~ operator, overloaded as binary operator.
3
ob1 is lessthan ob2
Not equal
4
This is the ~ operator, overloaded as binary operator.
5

ob1 is lessthan ob2
Not equal
6
3
GeeksFor
3
GeeksFor
3
GeeksFor
62(
ob1 is lessthan ob2
Not equal
4
3
GeeksFor
3
GeeksFor
3
GeeksFor
65

ob1 is lessthan ob2
Not equal
6
This is the ~ operator, overloaded as binary operator.
7
ob1 is lessthan ob2
Not equal
4
ob1 is lessthan ob2
Not equal
8+ print1

ob1 is lessthan ob2
Not equal
6
3
GeeksFor
3
GeeksFor
3
GeeksFor
7020

print2

ob1 is lessthan ob2
Not equal
9 print41____10

print7

ob1 is lessthan ob2
Not equal
9 print42
3
GeeksFor
3
GeeksFor
3
GeeksFor
0

(2

ob1 is lessthan ob2
Not equal
9 print4
3
GeeksFor
3
GeeksFor
3
GeeksFor
3
3
GeeksFor
3
GeeksFor
3
GeeksFor
0

3
GeeksFor
3
GeeksFor
3
GeeksFor
62
3
GeeksFor
3
GeeksFor
3
GeeksFor
86

ob1 is lessthan ob2
Not equal
1print(
3
GeeksFor
3
GeeksFor
3
GeeksFor
90
3
GeeksFor
3
GeeksFor
3
GeeksFor
0

3
GeeksFor
3
GeeksFor
3
GeeksFor
7020

ob1 is lessthan ob2
Not equal
1print(
3
GeeksFor
3
GeeksFor
3
GeeksFor
97
3
GeeksFor
3
GeeksFor
3
GeeksFor
0

Output:

ob2 is greater than ob1

Quá tải bình đẳng và ít hơn các toán tử: & nbsp; 

Python3

ob2 is greater than ob1
9
ob1 is lessthan ob2
Not equal
0

ob1 is lessthan ob2
Not equal
1
ob1 is lessthan ob2
Not equal
2
ob1 is lessthan ob2
Not equal
3
ob1 is lessthan ob2
Not equal
4
ob1 is lessthan ob2
Not equal
5

ob1 is lessthan ob2
Not equal
6
ob1 is lessthan ob2
Not equal
4
ob1 is lessthan ob2
Not equal
8
ob1 is lessthan ob2
Not equal
9
This is the ~ operator, overloaded as binary operator.
0

ob1 is lessthan ob2
Not equal
1
ob1 is lessthan ob2
Not equal
2
ob2 is greater than ob1
13
ob1 is lessthan ob2
Not equal
4
3
GeeksFor
3
GeeksFor
3
GeeksFor
10

ob1 is lessthan ob2
Not equal
6
3
GeeksFor
3
GeeksFor
3
GeeksFor
62(
ob1 is lessthan ob2
Not equal
4
ob2 is greater than ob1
20

3
GeeksFor
3
GeeksFor
3
GeeksFor
66
This is the ~ operator, overloaded as binary operator.
7
ob2 is greater than ob1
23

ob1 is lessthan ob2
Not equal
6
3
GeeksFor
3
GeeksFor
3
GeeksFor
7020

3
GeeksFor
3
GeeksFor
3
GeeksFor
66
This is the ~ operator, overloaded as binary operator.
7
ob2 is greater than ob1
29

ob1 is lessthan ob2
Not equal
1
ob1 is lessthan ob2
Not equal
2
ob2 is greater than ob1
32
ob1 is lessthan ob2
Not equal
4
3
GeeksFor
3
GeeksFor
3
GeeksFor
10

ob1 is lessthan ob2
Not equal
6
3
GeeksFor
3
GeeksFor
3
GeeksFor
62(
ob1 is lessthan ob2
Not equal
4
ob1 is lessthan ob2
Not equal
8
ob1 is lessthan ob2
Not equal
9
ob1 is lessthan ob2
Not equal
9

3
GeeksFor
3
GeeksFor
3
GeeksFor
66
This is the ~ operator, overloaded as binary operator.
7
ob2 is greater than ob1
45

ob1 is lessthan ob2
Not equal
6
3
GeeksFor
3
GeeksFor
3
GeeksFor
7020

3
GeeksFor
3
GeeksFor
3
GeeksFor
66
This is the ~ operator, overloaded as binary operator.
7
ob2 is greater than ob1
51

print2

ob1 is lessthan ob2
Not equal
9 print42__

print7

ob1 is lessthan ob2
Not equal
9 print4
3
GeeksFor
3
GeeksFor
3
GeeksFor
9____10

print

ob2 is greater than ob1
63

(2

ob1 is lessthan ob2
Not equal
9 print4
ob2 is greater than ob1
1
3
GeeksFor
3
GeeksFor
3
GeeksFor
0

(7

ob1 is lessthan ob2
Not equal
9 print4
ob2 is greater than ob1
1
3
GeeksFor
3
GeeksFor
3
GeeksFor
0

print13

ob1 is lessthan ob2
Not equal
9
ob1 is lessthan ob2
Not equal
9 15

Output:

ob1 is lessthan ob2
Not equal

Phương pháp ma thuật Python hoặc các chức năng đặc biệt cho quá tải người vận hành

Nhà khai thác nhị phân:

Nhà điều hànhPhương pháp ma thuật
+__add __ (bản thân, người khác)
-__Sub __ (bản thân, người khác)
*__mul __ (bản thân, người khác)
/__truediv __ (bản thân, người khác)
//__floordiv __ (bản thân, người khác)
Phần trăm__mod __ (bản thân, người khác)
**__pow __ (bản thân, người khác)
>>__rshift __ (bản thân, người khác)
<<__lshift __ (bản thân, người khác)
Không có giá trị__and __ (bản thân, người khác)
|__or __ (bản thân, người khác)
^__xor __ (bản thân, người khác)

Toán tử so sánh:

Nhà điều hànhPhương pháp ma thuật
<__lshift __ (bản thân, người khác)
Không có giá trị__and __ (bản thân, người khác)
<=__lshift __ (bản thân, người khác)
Không có giá trị__and __ (bản thân, người khác)
|__or __ (bản thân, người khác)
^__xor __ (bản thân, người khác)

Toán tử so sánh:

__lt __ (bản thân, người khác)>
__gt __ (bản thân, người khác) __le __ (bản thân, người khác)
> = __ge __ (bản thân, người khác)
== __eq __ (bản thân, người khác)
! = __ne __ (bản thân, người khác)
Toán tử chuyển nhượng: Nhà điều hành
Phương pháp ma thuật -=
__isub __ (bản thân, người khác) +=
__iadd __ (bản thân, người khác) *=
<<= __lshift __ (bản thân, người khác)
Không có giá trị __and __ (bản thân, người khác)
| __or __ (bản thân, người khác)
^ __xor __ (bản thân, người khác)

Toán tử so sánh:

Nhà điều hànhPhương pháp ma thuật
- __Sub __ (bản thân, người khác)
+ __add __ (bản thân, người khác)
- __Sub __ (bản thân, người khác)

*It is not possible to change the number of operands of an operator. For example: If we can not overload a unary operator as a binary operator. The following code will throw a syntax error.

Python3

ob2 is greater than ob1
9
ob1 is lessthan ob2
Not equal
0

ob1 is lessthan ob2
Not equal
1
ob1 is lessthan ob2
Not equal
2
ob1 is lessthan ob2
Not equal
3
ob1 is lessthan ob2
Not equal
4
ob1 is lessthan ob2
Not equal
5

ob1 is lessthan ob2
Not equal
6
ob1 is lessthan ob2
Not equal
4
ob1 is lessthan ob2
Not equal
8
ob1 is lessthan ob2
Not equal
9
This is the ~ operator, overloaded as binary operator.
0

__mul __ (bản thân, người khác)

/

print2

ob1 is lessthan ob2
Not equal
9 print42__

print

ob1 is lessthan ob2
Not equal
05

print7

ob1 is lessthan ob2
Not equal
9 print4
3
GeeksFor
3
GeeksFor
3
GeeksFor
9____10

This is the ~ operator, overloaded as binary operator.


Toán tử quá tải và ghi đè là gì?

Quá tải xảy ra khi hai hoặc nhiều phương thức trong một lớp có cùng tên phương thức nhưng các tham số khác nhau. Xuất hiện xảy ra khi hai phương thức có cùng tên và tham số phương thức. Một trong những phương pháp nằm trong lớp cha mẹ và phương pháp khác nằm trong lớp con. Overriding occurs when two methods have the same method name and parameters. One of the methods is in the parent class, and the other is in the child class.

Toán tử đang ghi đè trong Python là gì?

Python. | Quá tải toán tử có nghĩa là đưa ra ý nghĩa mở rộng vượt ra ngoài ý nghĩa hoạt động được xác định trước của chúng. Ví dụ, toán tử + được sử dụng để thêm hai số nguyên cũng như tham gia hai chuỗi và hợp nhất hai danh sách. Nó có thể đạt được vì toán tử '+' bị quá tải bởi lớp int và lớp str.giving extended meaning beyond their predefined operational meaning. For example operator + is used to add two integers as well as join two strings and merge two lists. It is achievable because '+' operator is overloaded by int class and str class.

Có nhà điều hành quá tải trong Python?

Python không chỉ giới hạn quá tải toán tử cho các toán tử số học.Chúng ta có thể quá tải các nhà khai thác so sánh là tốt.. We can overload comparison operators as well.

Toán tử quá tải giải thích với một ví dụ trong Python là gì?

Toán tử quá tải trong Python là khả năng của một toán tử duy nhất thực hiện nhiều hơn một thao tác dựa trên lớp (loại) của các toán hạng.Ví dụ: toán tử + có thể được sử dụng để thêm hai số, nối hai chuỗi hoặc hợp nhất hai danh sách.the ability of a single operator to perform more than one operation based on the class (type) of operands. For example, the + operator can be used to add two numbers, concatenate two strings or merge two lists.