Hướng dẫn what is overloading in python with example? - quá tải trong python với ví dụ 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
0

print(

3
GeeksFor
3+
3
GeeksFor
5
3
GeeksFor
0

print(

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

print(

3
GeeksFor
3
ob2 is greater than ob1
0
ob2 is greater than ob1
1
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 pháp hoặc chức năng. 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. Ở đó, bằng cách thay đổi mã MAGI MAGIC này, chúng ta có thể cung cấp thêm ý nghĩa cho toán tử +. & 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
0

(2

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

(7

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

print13+ 15

print177____8 19

Đầu ra: & nbsp; & nbsp; 
 

3
GeeksFor

Mã 2: & NBSP;

Python3

ob2 is greater than ob1
9 +1+2

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+7

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
0

(2

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

(7

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

print

3
GeeksFor
35

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
54(
ob1 is lessthan ob2
Not equal
4
3
GeeksFor
57

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
62+2

print2

ob1 is lessthan ob2
Not equal
9 print41____10

print7

ob1 is lessthan ob2
Not equal
9 print42
3
GeeksFor
0

(2

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

3
GeeksFor
54
3
GeeksFor
78

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

3
GeeksFor
62+2

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

Output:

ob2 is greater than ob1

(7

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

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
54(
ob1 is lessthan ob2
Not equal
4
ob2 is greater than ob1
12

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
62+2

print2

ob1 is lessthan ob2
Not equal
9 print41____10

print7

ob1 is lessthan ob2
Not equal
9 print42
3
GeeksFor
0

(2

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

(7

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

ob1 is lessthan ob2
Not equal
6
3
GeeksFor
62+2

print13+ 15

print7

ob1 is lessthan ob2
Not equal
9 print42
3
GeeksFor
0

print7

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

print

ob2 is greater than ob1
55

(2

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

(7

ob1 is lessthan ob2
Not equal
9 print4
ob2 is greater than ob1
1
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

__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

print

ob2 is greater than ob1
97

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

This is the ~ operator, overloaded as binary operator.


Làm thế nào là quá tải giải thích với ví dụ?

Quá tải phương thức cho phép các phương thức khác nhau có cùng tên, nhưng các chữ ký khác nhau trong đó chữ ký có thể khác nhau theo số lượng tham số đầu vào hoặc loại tham số đầu vào hoặc hỗn hợp của cả hai.Quá tải phương pháp còn được gọi là đa hình thời gian biên dịch, đa hình tĩnh hoặc liên kết sớm trong Java.allows different methods to have the same name, but different signatures where the signature can differ by the number of input parameters or type of input parameters, or a mixture of both. Method overloading is also known as Compile-time Polymorphism, Static Polymorphism, or Early binding in Java.

Quá tải trong Python là gì?

Chức năng quá tải trong Python là gì?Như tên cho thấy, quá tải chức năng là quá trình trong đó cùng một hàm có thể được sử dụng nhiều lần bằng cách truyền một số lượng tham số khác nhau làm đối số.the process where the same function can be used multiple times by passing a different number of parameters as arguments.

Làm thế nào để bạn viết quá tải trong Python?

Chương trình Python để xác định toán tử quá tải bên trong một đối tượng khác ...
LỚP TUYỆT VỜI_1:.
def __init __ (tự, x, y):.
bản thân.X = x ..
bản thân.Y = y ..
# Bây giờ, chúng tôi sẽ thêm hai đối tượng ..
def __add __ (tự, u):.
tự trả lại.X + U.X, Tự.Y + u.y ..
Object_1 = Complex_1 (23, 12).