Hướng dẫn what is operator overloading explain with example in python? - quá tải toán tử giải thích với ví dụ trong python là gì?

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 trong Python *là gì?

Toán tử quá tải trong Python có nghĩa là cung cấp ý 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.Chẳng hạn như, chúng tôi sử dụng toán tử "+" để thêm hai số nguyên cũng như tham gia hai chuỗi hoặc hợp nhất hai danh sách.Chúng ta có thể đạt được điều này khi toán tử "+" bị quá tải bởi lớp "int" và "str".provide extended meaning beyond their predefined operational meaning. Such as, we use the "+" operator for adding two integers as well as joining two strings or merging two lists. We can achieve this as the "+" operator is overloaded by the "int" class and "str" class.

Nhà điều hành trong Python với ví dụ là gì?

Các toán tử số học Python.

Quá tải toán tử là gì giải thích các loại của họ là gì?

Quá tải toán tử là phương pháp mà chúng ta có thể thay đổi chức năng của một số toán tử cụ thể để thực hiện một số nhiệm vụ khác nhau.Trong cú pháp trên return_type là loại giá trị được trả lại cho một đối tượng khác, toán tử OP là hàm trong đó toán tử là từ khóa và OP là toán tử bị quá tải.the method by which we can change the function of some specific operators to do some different task. In the above syntax Return_Type is value type to be returned to another object, operator op is the function where the operator is a keyword and op is the operator to be overloaded.

Quá tải là gì giải thích?

Quá tải là tải một lượng quá mức trong hoặc trên một cái gì đó, chẳng hạn như quá tải điện mà rút ngắn các mạch.Quá tải gây ra "quá nhiều!"tình hình.Quá tải là đẩy một cái gì đó hoặc ai đó quá xa.to load an excessive amount in or on something, such as an overload of electricity which shorts out the circuits. Overloading causes a "Too much!" situation. To overload is to push something or someone too far.