Bạn có thể có 2 phương thức cùng tên python không?

Python không hỗ trợ nhiều hàm tạo rõ ràng, nhưng có một số cách sử dụng để có thể đạt được nhiều hàm tạo. Nếu nhiều phương thức __init__ được viết cho cùng một lớp, thì phương thức mới nhất sẽ ghi đè lên tất cả các hàm tạo trước đó và lý do cho điều này có thể là, python lưu trữ tất cả các tên hàm trong một lớp dưới dạng khóa trong từ điển, vì vậy, khi một hàm mới được định nghĩa

Điều kiện tiên quyết - Trình xây dựng, trình trang trí @classmethod

Nhìn vào ví dụ dưới đây

Python3




Sum of list : 15
Square of int : 25
String : Hello! GeeksforGeeks.
95
Sum of list : 15
Square of int : 25
String : Hello! GeeksforGeeks.
96

 

Sum of list : 15
Square of int : 25
String : Hello! GeeksforGeeks.
97____298
Sum of list : 15
Square of int : 25
String : Hello! GeeksforGeeks.
99____300
Sum of list : 15
Square of int : 25
String : Hello! GeeksforGeeks.
0

Sum of list : 15
Square of int : 25
String : Hello! GeeksforGeeks.
1
Sum of list : 15
Square of int : 25
String : Hello! GeeksforGeeks.
2____03
Sum of list : 15
Square of int : 25
String : Hello! GeeksforGeeks.
4
Sum of list : 15
Square of int : 25
String : Hello! GeeksforGeeks.
5

 

Sum of list : 15
Square of int : 25
String : Hello! GeeksforGeeks.
97____298
Sum of list : 15
Square of int : 25
String : Hello! GeeksforGeeks.
99____300
Sum of list : 15
Square of int : 25
String : Hello! GeeksforGeeks.
0

Sum of list : 15
Square of int : 25
String : Hello! GeeksforGeeks.
1
Sum of list : 15
Square of int : 25
String : Hello! GeeksforGeeks.
2____03
Sum of list : 15
Square of int : 25
String : Hello! GeeksforGeeks.
04
Sum of list : 15
Square of int : 25
String : Hello! GeeksforGeeks.
5

 

Sum of list : 15
Square of int : 25
String : Hello! GeeksforGeeks.
97____298
Sum of list : 15
Square of int : 25
String : Hello! GeeksforGeeks.
99____300
Sum of list : 15
Square of int : 25
String : Hello! GeeksforGeeks.
0

Sum of list : 15
Square of int : 25
String : Hello! GeeksforGeeks.
1
Sum of list : 15
Square of int : 25
String : Hello! GeeksforGeeks.
2____03
Sum of list : 15
Square of int : 25
String : Hello! GeeksforGeeks.
04
Sum of list : 15
Square of int : 25
String : Hello! GeeksforGeeks.
5

 

 

________ 106 ________ 107 ________ 108

Đầu ra

Sum of list : 15
Square of int : 25
String : Hello! GeeksforGeeks.
1

Cần cho nhiều nhà xây dựng

Cần có nhiều hàm tạo khi một người phải thực hiện các hành động khác nhau khi khởi tạo một lớp. Điều này hữu ích khi lớp phải thực hiện các hành động khác nhau trên các tham số khác nhau. Các hàm tạo của lớp có thể được tạo để thể hiện tính đa hình theo ba cách được liệt kê bên dưới

  1. Quá tải hàm tạo dựa trên đối số
  2. Phương thức gọi từ __init__
  3. Sử dụng trình trang trí @classmethod

Bài viết này giải thích cách có nhiều hàm tạo theo cách rõ ràng và Pythonic với các ví dụ

Quá tải hàm tạo dựa trên đối số

Quá tải hàm tạo được thực hiện bằng cách kiểm tra các điều kiện cho các đối số được truyền và thực hiện các hành động được yêu cầu. Ví dụ: xem xét việc truyền một đối số cho mẫu lớp,

  • Nếu tham số là một số nguyên, bình phương của số sẽ là câu trả lời
  • Nếu tham số là Chuỗi, câu trả lời phải là “Xin chào. ” +chuỗi
  • Nếu tham số có độ dài lớn hơn 1, tổng các đối số sẽ được lưu dưới dạng câu trả lời

Python3




Sum of list : 15
Square of int : 25
String : Hello! GeeksforGeeks.
95
Sum of list : 15
Square of int : 25
String : Hello! GeeksforGeeks.
950

 

Sum of list : 15
Square of int : 25
String : Hello! GeeksforGeeks.
97____2952

Sum of list : 15
Square of int : 25
String : Hello! GeeksforGeeks.
97____2954

Sum of list : 15
Square of int : 25
String : Hello! GeeksforGeeks.
97______298
Sum of list : 15
Square of int : 25
String : Hello! GeeksforGeeks.
99____300
Sum of list : 15
Square of int : 25
String : Hello! GeeksforGeeks.
959
Sum of list : 15
Square of int : 25
String : Hello! GeeksforGeeks.
960
Sum of list : 15
Square of int : 25
String : Hello! GeeksforGeeks.
961

 

Sum of list : 15
Square of int : 25
String : Hello! GeeksforGeeks.
1____2963

Sum of list : 15
Square of int : 25
String : Hello! GeeksforGeeks.
1____2965

Sum of list : 15
Square of int : 25
String : Hello! GeeksforGeeks.
1
Sum of list : 15
Square of int : 25
String : Hello! GeeksforGeeks.
967
Sum of list : 15
Square of int : 25
String : Hello! GeeksforGeeks.
968
Sum of list : 15
Square of int : 25
String : Hello! GeeksforGeeks.
969
Sum of list : 15
Square of int : 25
String : Hello! GeeksforGeeks.
970
Sum of list : 15
Square of int : 25
String : Hello! GeeksforGeeks.
971

Sum of list : 15
Square of int : 25
String : Hello! GeeksforGeeks.
972
Sum of list : 15
Square of int : 25
String : Hello! GeeksforGeeks.
00____2974
Sum of list : 15
Square of int : 25
String : Hello! GeeksforGeeks.
07
Sum of list : 15
Square of int : 25
String : Hello! GeeksforGeeks.
976

Sum of list : 15
Square of int : 25
String : Hello! GeeksforGeeks.
972
Sum of list : 15
Square of int : 25
String : Hello! GeeksforGeeks.
978
Sum of list : 15
Square of int : 25
String : Hello! GeeksforGeeks.
979
Sum of list : 15
Square of int : 25
String : Hello! GeeksforGeeks.
980
Sum of list : 15
Square of int : 25
String : Hello! GeeksforGeeks.
981

Sum of list : 15
Square of int : 25
String : Hello! GeeksforGeeks.
982
Sum of list : 15
Square of int : 25
String : Hello! GeeksforGeeks.
00
Sum of list : 15
Square of int : 25
String : Hello! GeeksforGeeks.
974______2985
Sum of list : 15
Square of int : 25
String : Hello! GeeksforGeeks.
07
Sum of list : 15
Square of int : 25
String : Hello! GeeksforGeeks.
979

 

Sum of list : 15
Square of int : 25
String : Hello! GeeksforGeeks.
1____2989

Sum of list : 15
Square of int : 25
String : Hello! GeeksforGeeks.
1____2991

Sum of list : 15
Square of int : 25
String : Hello! GeeksforGeeks.
1
Sum of list : 15
Square of int : 25
String : Hello! GeeksforGeeks.
993
Sum of list : 15
Square of int : 25
String : Hello! GeeksforGeeks.
994
Sum of list : 15
Square of int : 25
String : Hello! GeeksforGeeks.
995
Sum of list : 15
Square of int : 25
String : Hello! GeeksforGeeks.
976
Sum of list : 15
Square of int : 25
String : Hello! GeeksforGeeks.
997
Sum of list : 15
Square of int : 25
String : Hello! GeeksforGeeks.
998
Sum of list : 15
Square of int : 25
String : Hello! GeeksforGeeks.
0

Sum of list : 15
Square of int : 25
String : Hello! GeeksforGeeks.
972
Sum of list : 15
Square of int : 25
String : Hello! GeeksforGeeks.
00_______2974
Sum of list : 15
Square of int : 25
String : Hello! GeeksforGeeks.
07
Sum of list : 15
Square of int : 25
String : Hello! GeeksforGeeks.
004
Sum of list : 15
Square of int : 25
String : Hello! GeeksforGeeks.
976
Sum of list : 15
Square of int : 25
String : Hello! GeeksforGeeks.
006
Sum of list : 15
Square of int : 25
String : Hello! GeeksforGeeks.
960
Sum of list : 15
Square of int : 25
String : Hello! GeeksforGeeks.
004
Sum of list : 15
Square of int : 25
String : Hello! GeeksforGeeks.
976
Sum of list : 15
Square of int : 25
String : Hello! GeeksforGeeks.
006

 

Sum of list : 15
Square of int : 25
String : Hello! GeeksforGeeks.
1
Sum of list : 15
Square of int : 25
String : Hello! GeeksforGeeks.
02

Sum of list : 15
Square of int : 25
String : Hello! GeeksforGeeks.
1
Sum of list : 15
Square of int : 25
String : Hello! GeeksforGeeks.
04

Sum of list : 15
Square of int : 25
String : Hello! GeeksforGeeks.
1
Sum of list : 15
Square of int : 25
String : Hello! GeeksforGeeks.
993
Sum of list : 15
Square of int : 25
String : Hello! GeeksforGeeks.
994
Sum of list : 15
Square of int : 25
String : Hello! GeeksforGeeks.
995
Sum of list : 15
Square of int : 25
String : Hello! GeeksforGeeks.
976
Sum of list : 15
Square of int : 25
String : Hello! GeeksforGeeks.
997
Sum of list : 15
Square of int : 25
String : Hello! GeeksforGeeks.
11
Sum of list : 15
Square of int : 25
String : Hello! GeeksforGeeks.
0

Sum of list : 15
Square of int : 25
String : Hello! GeeksforGeeks.
972
Sum of list : 15
Square of int : 25
String : Hello! GeeksforGeeks.
00_______2974
Sum of list : 15
Square of int : 25
String : Hello! GeeksforGeeks.
07
Sum of list : 15
Square of int : 25
String : Hello! GeeksforGeeks.
17
Sum of list : 15
Square of int : 25
String : Hello! GeeksforGeeks.
985
Sum of list : 15
Square of int : 25
String : Hello! GeeksforGeeks.
004
Sum of list : 15
Square of int : 25
String : Hello! GeeksforGeeks.
976
Sum of list : 15
Square of int : 25
String : Hello! GeeksforGeeks.
006
Sum of list : 15
Square of int : 25
String : Hello! GeeksforGeeks.
985
Sum of list : 15
Square of int : 25
String : Hello! GeeksforGeeks.
23

 

 

Sum of list : 15
Square of int : 25
String : Hello! GeeksforGeeks.
24
Sum of list : 15
Square of int : 25
String : Hello! GeeksforGeeks.
07
Sum of list : 15
Square of int : 25
String : Hello! GeeksforGeeks.
26_______2970
Sum of list : 15
Square of int : 25
String : Hello! GeeksforGeeks.
959
Sum of list : 15
Square of int : 25
String : Hello! GeeksforGeeks.
29______2959
Sum of list : 15
Square of int : 25
String : Hello! GeeksforGeeks.
31
Sum of list : 15
Square of int : 25
String : Hello! GeeksforGeeks.
959
Sum of list : 15
Square of int : 25
String : Hello! GeeksforGeeks.
33
Sum of list : 15
Square of int : 25
String : Hello! GeeksforGeeks.
959
Sum of list : 15
Square of int : 25
String : Hello! GeeksforGeeks.
35
Sum of list : 15
Square of int : 25
String : Hello! GeeksforGeeks.
5

Sum of list : 15
Square of int : 25
String : Hello! GeeksforGeeks.
2____03____039
Sum of list : 15
Square of int : 25
String : Hello! GeeksforGeeks.
40

 

Sum of list : 15
Square of int : 25
String : Hello! GeeksforGeeks.
41
Sum of list : 15
Square of int : 25
String : Hello! GeeksforGeeks.
07
Sum of list : 15
Square of int : 25
String : Hello! GeeksforGeeks.
26______035
Sum of list : 15
Square of int : 25
String : Hello! GeeksforGeeks.
5

_______02____03____048

Sum of list : 15
Square of int : 25
String : Hello! GeeksforGeeks.
49

 

Sum of list : 15
Square of int : 25
String : Hello! GeeksforGeeks.
50
Sum of list : 15
Square of int : 25
String : Hello! GeeksforGeeks.
07
Sum of list : 15
Square of int : 25
String : Hello! GeeksforGeeks.
26
Sum of list : 15
Square of int : 25
String : Hello! GeeksforGeeks.
53
Sum of list : 15
Square of int : 25
String : Hello! GeeksforGeeks.
5

Sum of list : 15
Square of int : 25
String : Hello! GeeksforGeeks.
2____03____057
Sum of list : 15
Square of int : 25
String : Hello! GeeksforGeeks.
58

Đầu ra

Sum of list : 15
Square of int : 25
String : Hello! GeeksforGeeks.

Trong đoạn mã trên, biến thể hiện là ans, nhưng các giá trị của nó khác nhau dựa trên các đối số. Vì một số lượng đối số thay đổi cho lớp, nên *args được sử dụng, đây là một bộ chứa các đối số được truyền và có thể được truy cập bằng chỉ mục. Trong trường hợp int và string, chỉ một đối số được truyền và do đó được truy cập dưới dạng args[0] (phần tử duy nhất trong bộ dữ liệu)

Phương thức gọi từ __init__

Một lớp có thể có một hàm tạo __init__ có thể thực hiện bất kỳ hành động nào khi thể hiện của lớp được tạo. Hàm tạo này có thể được tạo cho các hàm khác nhau thực hiện các hành động khác nhau dựa trên các đối số được truyền. Bây giờ hãy xem xét một ví dụ.  

  • Nếu số lượng đối số truyền vào là 2, thì đánh giá biểu thức x = a2-b2
  • Nếu số lượng đối số được truyền vào là 3, thì hãy đánh giá biểu thức y = a2+b2-c
  • Nếu có hơn 3 đối số được truyền thì cộng bình phương, chia cho giá trị cao nhất trong các đối số được truyền

Python3




Sum of list : 15
Square of int : 25
String : Hello! GeeksforGeeks.
95
Sum of list : 15
Square of int : 25
String : Hello! GeeksforGeeks.
60

 

Sum of list : 15
Square of int : 25
String : Hello! GeeksforGeeks.
61
Sum of list : 15
Square of int : 25
String : Hello! GeeksforGeeks.
62

Sum of list : 15
Square of int : 25
String : Hello! GeeksforGeeks.
97______298
Sum of list : 15
Square of int : 25
String : Hello! GeeksforGeeks.
99____300
Sum of list : 15
Square of int : 25
String : Hello! GeeksforGeeks.
959
Sum of list : 15
Square of int : 25
String : Hello! GeeksforGeeks.
960
Sum of list : 15
Square of int : 25
String : Hello! GeeksforGeeks.
69

 

Sum of list : 15
Square of int : 25
String : Hello! GeeksforGeeks.
1
Sum of list : 15
Square of int : 25
String : Hello! GeeksforGeeks.
71

Sum of list : 15
Square of int : 25
String : Hello! GeeksforGeeks.
1
Sum of list : 15
Square of int : 25
String : Hello! GeeksforGeeks.
967
Sum of list : 15
Square of int : 25
String : Hello! GeeksforGeeks.
968
Sum of list : 15
Square of int : 25
String : Hello! GeeksforGeeks.
75
Sum of list : 15
Square of int : 25
String : Hello! GeeksforGeeks.
07
Sum of list : 15
Square of int : 25
String : Hello! GeeksforGeeks.
07
Sum of list : 15
Square of int : 25
String : Hello! GeeksforGeeks.
29
Sum of list : 15
Square of int : 25
String : Hello! GeeksforGeeks.
971

Sum of list : 15
Square of int : 25
String : Hello! GeeksforGeeks.
972
Sum of list : 15
Square of int : 25
String : Hello! GeeksforGeeks.
00
Sum of list : 15
Square of int : 25
String : Hello! GeeksforGeeks.
974
Sum of list : 15
Square of int : 25
String : Hello! GeeksforGeeks.
07
Sum of list : 15
Square of int : 25
String : Hello! GeeksforGeeks.
00
Sum of list : 15
Square of int : 25
String : Hello! GeeksforGeeks.
85

 

Sum of list : 15
Square of int : 25
String : Hello! GeeksforGeeks.
1
Sum of list : 15
Square of int : 25
String : Hello! GeeksforGeeks.
87

Sum of list : 15
Square of int : 25
String : Hello! GeeksforGeeks.
1
Sum of list : 15
Square of int : 25
String : Hello! GeeksforGeeks.
993
Sum of list : 15
Square of int : 25
String : Hello! GeeksforGeeks.
968
Sum of list : 15
Square of int : 25
String : Hello! GeeksforGeeks.
75
Sum of list : 15
Square of int : 25
String : Hello! GeeksforGeeks.
07
Sum of list : 15
Square of int : 25
String : Hello! GeeksforGeeks.
07
Sum of list : 15
Square of int : 25
String : Hello! GeeksforGeeks.
31
Sum of list : 15
Square of int : 25
String : Hello! GeeksforGeeks.
971

Sum of list : 15
Square of int : 25
String : Hello! GeeksforGeeks.
972
Sum of list : 15
Square of int : 25
String : Hello! GeeksforGeeks.
00
Sum of list : 15
Square of int : 25
String : Hello! GeeksforGeeks.
974
Sum of list : 15
Square of int : 25
String : Hello! GeeksforGeeks.
07
Sum of list : 15
Square of int : 25
String : Hello! GeeksforGeeks.
00
Sum of list : 15
Square of int : 25
String : Hello! GeeksforGeeks.
001

 

Sum of list : 15
Square of int : 25
String : Hello! GeeksforGeeks.
1
Sum of list : 15
Square of int : 25
String : Hello! GeeksforGeeks.
003

Sum of list : 15
Square of int : 25
String : Hello! GeeksforGeeks.
1____1005
Sum of list : 15
Square of int : 25
String : Hello! GeeksforGeeks.
971

Sum of list : 15
Square of int : 25
String : Hello! GeeksforGeeks.
972
Sum of list : 15
Square of int : 25
String : Hello! GeeksforGeeks.
00
Sum of list : 15
Square of int : 25
String : Hello! GeeksforGeeks.
974
Sum of list : 15
Square of int : 25
String : Hello! GeeksforGeeks.
07
Sum of list : 15
Square of int : 25
String : Hello! GeeksforGeeks.
00
Sum of list : 15
Square of int : 25
String : Hello! GeeksforGeeks.
012

 

Sum of list : 15
Square of int : 25
String : Hello! GeeksforGeeks.
97
Sum of list : 15
Square of int : 25
String : Hello! GeeksforGeeks.
98
Sum of list : 15
Square of int : 25
String : Hello! GeeksforGeeks.
015
Sum of list : 15
Square of int : 25
String : Hello! GeeksforGeeks.
00
Sum of list : 15
Square of int : 25
String : Hello! GeeksforGeeks.
017

Sum of list : 15
Square of int : 25
String : Hello! GeeksforGeeks.
1
Sum of list : 15
Square of int : 25
String : Hello! GeeksforGeeks.
019
Sum of list : 15
Square of int : 25
String : Hello! GeeksforGeeks.
07
Sum of list : 15
Square of int : 25
String : Hello! GeeksforGeeks.
995
Sum of list : 15
Square of int : 25
String : Hello! GeeksforGeeks.
976
Sum of list : 15
Square of int : 25
String : Hello! GeeksforGeeks.
006_______2960
Sum of list : 15
Square of int : 25
String : Hello! GeeksforGeeks.
004
Sum of list : 15
Square of int : 25
String : Hello! GeeksforGeeks.
976
Sum of list : 15
Square of int : 25
String : Hello! GeeksforGeeks.
027
Sum of list : 15
Square of int : 25
String : Hello! GeeksforGeeks.
985
Sum of list : 15
Square of int : 25
String : Hello! GeeksforGeeks.
995
Sum of list : 15
Square of int : 25
String : Hello! GeeksforGeeks.
970
Sum of list : 15
Square of int : 25
String : Hello! GeeksforGeeks.
006
Sum of list : 15
Square of int : 25
String : Hello! GeeksforGeeks.
960
Sum of list : 15
Square of int : 25
String : Hello! GeeksforGeeks.
004
Sum of list : 15
Square of int : 25
String : Hello! GeeksforGeeks.
970
Sum of list : 15
Square of int : 25
String : Hello! GeeksforGeeks.
036
Sum of list : 15
Square of int : 25
String : Hello! GeeksforGeeks.
004_____029
Sum of list : 15
Square of int : 25
String : Hello! GeeksforGeeks.
006

Sum of list : 15
Square of int : 25
String : Hello! GeeksforGeeks.
1
Sum of list : 15
Square of int : 25
String : Hello! GeeksforGeeks.
041
Sum of list : 15
Square of int : 25
String : Hello! GeeksforGeeks.
019

 

Sum of list : 15
Square of int : 25
String : Hello! GeeksforGeeks.
97____298
Sum of list : 15
Square of int : 25
String : Hello! GeeksforGeeks.
045____300
Sum of list : 15
Square of int : 25
String : Hello! GeeksforGeeks.
017

Sum of list : 15
Square of int : 25
String : Hello! GeeksforGeeks.
1
Sum of list : 15
Square of int : 25
String : Hello! GeeksforGeeks.
049
Sum of list : 15
Square of int : 25
String : Hello! GeeksforGeeks.
07
Sum of list : 15
Square of int : 25
String : Hello! GeeksforGeeks.
995_______2976
Sum of list : 15
Square of int : 25
String : Hello! GeeksforGeeks.
006
Sum of list : 15
Square of int : 25
String : Hello! GeeksforGeeks.
960
Sum of list : 15
Square of int : 25
String : Hello! GeeksforGeeks.
004
Sum of list : 15
Square of int : 25
String : Hello! GeeksforGeeks.
976
Sum of list : 15
Square of int : 25
String : Hello! GeeksforGeeks.
027
Sum of list : 15
Square of int : 25
String : Hello! GeeksforGeeks.
036
Sum of list : 15
Square of int : 25
String : Hello! GeeksforGeeks.
995
Sum of list : 15
Square of int : 25
String : Hello! GeeksforGeeks.
970
Sum of list : 15
Square of int : 25
String : Hello! GeeksforGeeks.
006
Sum of list : 15
Square of int : 25
String : Hello! GeeksforGeeks.
960
Sum of list : 15
Square of int : 25
String : Hello! GeeksforGeeks.
004
Sum of list : 15
Square of int : 25
String : Hello! GeeksforGeeks.
970
Sum of list : 15
Square of int : 25
String : Hello! GeeksforGeeks.
027

________ 01 ________ 1041 ________ 1049

 

Sum of list : 15
Square of int : 25
String : Hello! GeeksforGeeks.
97____298
Sum of list : 15
Square of int : 25
String : Hello! GeeksforGeeks.
071____300
Sum of list : 15
Square of int : 25
String : Hello! GeeksforGeeks.
017

________ 01 ________ 1075 ________ 107 ________ 2976

Sum of list : 15
Square of int : 25
String : Hello! GeeksforGeeks.
1
Sum of list : 15
Square of int : 25
String : Hello! GeeksforGeeks.
978
Sum of list : 15
Square of int : 25
String : Hello! GeeksforGeeks.
979
Sum of list : 15
Square of int : 25
String : Hello! GeeksforGeeks.
980
Sum of list : 15
Square of int : 25
String : Hello! GeeksforGeeks.
082
Sum of list : 15
Square of int : 25
String : Hello! GeeksforGeeks.
3______2976
Sum of list : 15
Square of int : 25
String : Hello! GeeksforGeeks.
959
Sum of list : 15
Square of int : 25
String : Hello! GeeksforGeeks.
968
Sum of list : 15
Square of int : 25
String : Hello! GeeksforGeeks.
087

Sum of list : 15
Square of int : 25
String : Hello! GeeksforGeeks.
972
Sum of list : 15
Square of int : 25
String : Hello! GeeksforGeeks.
075
Sum of list : 15
Square of int : 25
String : Hello! GeeksforGeeks.
985
Sum of list : 15
Square of int : 25
String : Hello! GeeksforGeeks.
07
Sum of list : 15
Square of int : 25
String : Hello! GeeksforGeeks.
092
Sum of list : 15
Square of int : 25
String : Hello! GeeksforGeeks.
960
Sum of list : 15
Square of int : 25
String : Hello! GeeksforGeeks.
092

Sum of list : 15
Square of int : 25
String : Hello! GeeksforGeeks.
1

Sum of list : 15
Square of int : 25
String : Hello! GeeksforGeeks.
1
Sum of list : 15
Square of int : 25
String : Hello! GeeksforGeeks.
075
Sum of list : 15
Square of int : 25
String : Hello! GeeksforGeeks.
07
Sum of list : 15
Square of int : 25
String : Hello! GeeksforGeeks.
075
Sum of list : 15
Square of int : 25
String : Hello! GeeksforGeeks.
000
Sum of list : 15
Square of int : 25
String : Hello! GeeksforGeeks.
001
Sum of list : 15
Square of int : 25
String : Hello! GeeksforGeeks.
002

________ 01 ________ 1004 ________ 107 ________ 1075

Sum of list : 15
Square of int : 25
String : Hello! GeeksforGeeks.
1
Sum of list : 15
Square of int : 25
String : Hello! GeeksforGeeks.
041
Sum of list : 15
Square of int : 25
String : Hello! GeeksforGeeks.
004

 

 

Sum of list : 15
Square of int : 25
String : Hello! GeeksforGeeks.
010
Sum of list : 15
Square of int : 25
String : Hello! GeeksforGeeks.
07
Sum of list : 15
Square of int : 25
String : Hello! GeeksforGeeks.
012
Sum of list : 15
Square of int : 25
String : Hello! GeeksforGeeks.
970
Sum of list : 15
Square of int : 25
String : Hello! GeeksforGeeks.
959
Sum of list : 15
Square of int : 25
String : Hello! GeeksforGeeks.
29
Sum of list : 15
Square of int : 25
String : Hello! GeeksforGeeks.
5

Sum of list : 15
Square of int : 25
String : Hello! GeeksforGeeks.
017
Sum of list : 15
Square of int : 25
String : Hello! GeeksforGeeks.
07
Sum of list : 15
Square of int : 25
String : Hello! GeeksforGeeks.
012
Sum of list : 15
Square of int : 25
String : Hello! GeeksforGeeks.
970
Sum of list : 15
Square of int : 25
String : Hello! GeeksforGeeks.
959
Sum of list : 15
Square of int : 25
String : Hello! GeeksforGeeks.
29
Sum of list : 15
Square of int : 25
String : Hello! GeeksforGeeks.
959
Sum of list : 15
Square of int : 25
String : Hello! GeeksforGeeks.
31
Sum of list : 15
Square of int : 25
String : Hello! GeeksforGeeks.
5

Sum of list : 15
Square of int : 25
String : Hello! GeeksforGeeks.
026
Sum of list : 15
Square of int : 25
String : Hello! GeeksforGeeks.
07
Sum of list : 15
Square of int : 25
String : Hello! GeeksforGeeks.
012
Sum of list : 15
Square of int : 25
String : Hello! GeeksforGeeks.
970
Sum of list : 15
Square of int : 25
String : Hello! GeeksforGeeks.
959
Sum of list : 15
Square of int : 25
String : Hello! GeeksforGeeks.
29
Sum of list : 15
Square of int : 25
String : Hello! GeeksforGeeks.
959
Sum of list : 15
Square of int : 25
String : Hello! GeeksforGeeks.
31
Sum of list : 15
Square of int : 25
String : Hello! GeeksforGeeks.
959
Sum of list : 15
Square of int : 25
String : Hello! GeeksforGeeks.
33
Sum of list : 15
Square of int : 25
String : Hello! GeeksforGeeks.
959
Sum of list : 15
Square of int : 25
String : Hello! GeeksforGeeks.
35
Sum of list : 15
Square of int : 25
String : Hello! GeeksforGeeks.
5

 

Sum of list : 15
Square of int : 25
String : Hello! GeeksforGeeks.
2____03
Sum of list : 15
Square of int : 25
String : Hello! GeeksforGeeks.
041
Sum of list : 15
Square of int : 25
String : Hello! GeeksforGeeks.
042

_______02____03____1045

Sum of list : 15
Square of int : 25
String : Hello! GeeksforGeeks.
046

Sum of list : 15
Square of int : 25
String : Hello! GeeksforGeeks.
2____03____1049
Sum of list : 15
Square of int : 25
String : Hello! GeeksforGeeks.
050

Đầu ra

Sum of list : 15
Square of int : 25
String : Hello! GeeksforGeeks.
0

Trong ví dụ trên, phương trình được đánh giá được viết trên các phương thức thể hiện khác nhau và được thực hiện để trả về câu trả lời. Hàm tạo gọi phương thức thích hợp và hoạt động khác nhau đối với các tham số khác nhau

Các biểu thức đã được đánh giá như sau

đầu vào. 1,2 —> 12-22 = 1-4 = -3

đầu vào. 1,2,3  —> (12 + 22) – 3 = 5-3 = 2

đầu vào. 1,2,3,4,5 —> (12 + 22 + 32 + 42 + 52) / 5 = 55/5 = 11. 0

Sử dụng trình trang trí @classmethod

Trình trang trí này cho phép một chức năng có thể truy cập được mà không cần khởi tạo lớp. Các chức năng có thể được truy cập bởi cả thể hiện của lớp và chính lớp đó. Tham số đầu tiên của phương thức được khai báo là classmethod là cls, giống như bản thân của các phương thức thể hiện. Ở đây cls đề cập đến chính lớp đó. Điều này chứng tỏ là rất hữu ích khi sử dụng nhiều hàm tạo trong Python và là một cách tiếp cận Pythonic hơn được xem xét cho các cách trên. Xem xét ví dụ tương tự được sử dụng ở trên. Đánh giá các biểu thức khác nhau dựa trên số lượng đầu vào

Python3




Sum of list : 15
Square of int : 25
String : Hello! GeeksforGeeks.
95
Sum of list : 15
Square of int : 25
String : Hello! GeeksforGeeks.
60

 

Sum of list : 15
Square of int : 25
String : Hello! GeeksforGeeks.
97____1054

Sum of list : 15
Square of int : 25
String : Hello! GeeksforGeeks.
97____298
Sum of list : 15
Square of int : 25
String : Hello! GeeksforGeeks.
99____300
Sum of list : 15
Square of int : 25
String : Hello! GeeksforGeeks.
059

Sum of list : 15
Square of int : 25
String : Hello! GeeksforGeeks.
1
Sum of list : 15
Square of int : 25
String : Hello! GeeksforGeeks.
00
Sum of list : 15
Square of int : 25
String : Hello! GeeksforGeeks.
974
Sum of list : 15
Square of int : 25
String : Hello! GeeksforGeeks.
07
Sum of list : 15
Square of int : 25
String : Hello! GeeksforGeeks.
064

 

________ 297 ________ 1066

________ 297 ________ 1068

Sum of list : 15
Square of int : 25
String : Hello! GeeksforGeeks.
97____298
Sum of list : 15
Square of int : 25
String : Hello! GeeksforGeeks.
015
Sum of list : 15
Square of int : 25
String : Hello! GeeksforGeeks.
072
Sum of list : 15
Square of int : 25
String : Hello! GeeksforGeeks.
017

Sum of list : 15
Square of int : 25
String : Hello! GeeksforGeeks.
074

Sum of list : 15
Square of int : 25
String : Hello! GeeksforGeeks.
074
Sum of list : 15
Square of int : 25
String : Hello! GeeksforGeeks.
076

Sum of list : 15
Square of int : 25
String : Hello! GeeksforGeeks.
1
Sum of list : 15
Square of int : 25
String : Hello! GeeksforGeeks.
019
Sum of list : 15
Square of int : 25
String : Hello! GeeksforGeeks.
07
Sum of list : 15
Square of int : 25
String : Hello! GeeksforGeeks.
072
Sum of list : 15
Square of int : 25
String : Hello! GeeksforGeeks.
081
Sum of list : 15
Square of int : 25
String : Hello! GeeksforGeeks.
976
Sum of list : 15
Square of int : 25
String : Hello! GeeksforGeeks.
006
Sum of list : 15
Square of int : 25
String : Hello! GeeksforGeeks.
960
Sum of list : 15
Square of int : 25
String : Hello! GeeksforGeeks.
004
Sum of list : 15
Square of int : 25
String : Hello! GeeksforGeeks.
976
Sum of list : 15
Square of int : 25
String : Hello! GeeksforGeeks.
027
Sum of list : 15
Square of int : 25
String : Hello! GeeksforGeeks.
985
Sum of list : 15
Square of int : 25
String : Hello! GeeksforGeeks.
995
Sum of list : 15
Square of int : 25
String : Hello! GeeksforGeeks.
970
Sum of list : 15
Square of int : 25
String : Hello! GeeksforGeeks.
006
Sum of list : 15
Square of int : 25
String : Hello! GeeksforGeeks.
960
Sum of list : 15
Square of int : 25
String : Hello! GeeksforGeeks.
004
Sum of list : 15
Square of int : 25
String : Hello! GeeksforGeeks.
970
Sum of list : 15
Square of int : 25
String : Hello! GeeksforGeeks.
027
Sum of list : 15
Square of int : 25
String : Hello! GeeksforGeeks.
036_____1___3004___029___

Sum of list : 15
Square of int : 25
String : Hello! GeeksforGeeks.
1
Sum of list : 15
Square of int : 25
String : Hello! GeeksforGeeks.
041
Sum of list : 15
Square of int : 25
String : Hello! GeeksforGeeks.
019

 

Sum of list : 15
Square of int : 25
String : Hello! GeeksforGeeks.
97____29504

________ 297 ________ 1068

Sum of list : 15
Square of int : 25
String : Hello! GeeksforGeeks.
97____298
Sum of list : 15
Square of int : 25
String : Hello! GeeksforGeeks.
045____1072
Sum of list : 15
Square of int : 25
String : Hello! GeeksforGeeks.
017

Sum of list : 15
Square of int : 25
String : Hello! GeeksforGeeks.
1
Sum of list : 15
Square of int : 25
String : Hello! GeeksforGeeks.
049
Sum of list : 15
Square of int : 25
String : Hello! GeeksforGeeks.
07
Sum of list : 15
Square of int : 25
String : Hello! GeeksforGeeks.
072
Sum of list : 15
Square of int : 25
String : Hello! GeeksforGeeks.
081
Sum of list : 15
Square of int : 25
String : Hello! GeeksforGeeks.
976_______3006
Sum of list : 15
Square of int : 25
String : Hello! GeeksforGeeks.
960
Sum of list : 15
Square of int : 25
String : Hello! GeeksforGeeks.
004
Sum of list : 15
Square of int : 25
String : Hello! GeeksforGeeks.
976
Sum of list : 15
Square of int : 25
String : Hello! GeeksforGeeks.
027
Sum of list : 15
Square of int : 25
String : Hello! GeeksforGeeks.
036
Sum of list : 15
Square of int : 25
String : Hello! GeeksforGeeks.
995
Sum of list : 15
Square of int : 25
String : Hello! GeeksforGeeks.
970
Sum of list : 15
Square of int : 25
String : Hello! GeeksforGeeks.
006
Sum of list : 15
Square of int : 25
String : Hello! GeeksforGeeks.
960
Sum of list : 15
Square of int : 25
String : Hello! GeeksforGeeks.
004
Sum of list : 15
Square of int : 25
String : Hello! GeeksforGeeks.
970
Sum of list : 15
Square of int : 25
String : Hello! GeeksforGeeks.
9530

________ 01 ________ 1041 ________ 1049

 

Sum of list : 15
Square of int : 25
String : Hello! GeeksforGeeks.
97____29535

________ 297 ________ 1068

Sum of list : 15
Square of int : 25
String : Hello! GeeksforGeeks.
97____298
Sum of list : 15
Square of int : 25
String : Hello! GeeksforGeeks.
071____1072
Sum of list : 15
Square of int : 25
String : Hello! GeeksforGeeks.
017

________ 01 ________ 1075 ________ 107 ________ 2976

 

Sum of list : 15
Square of int : 25
String : Hello! GeeksforGeeks.
1____29548

Sum of list : 15
Square of int : 25
String : Hello! GeeksforGeeks.
1
Sum of list : 15
Square of int : 25
String : Hello! GeeksforGeeks.
978
Sum of list : 15
Square of int : 25
String : Hello! GeeksforGeeks.
979
Sum of list : 15
Square of int : 25
String : Hello! GeeksforGeeks.
980
Sum of list : 15
Square of int : 25
String : Hello! GeeksforGeeks.
082
Sum of list : 15
Square of int : 25
String : Hello! GeeksforGeeks.
3______2976
Sum of list : 15
Square of int : 25
String : Hello! GeeksforGeeks.
959
Sum of list : 15
Square of int : 25
String : Hello! GeeksforGeeks.
968
Sum of list : 15
Square of int : 25
String : Hello! GeeksforGeeks.
087

Sum of list : 15
Square of int : 25
String : Hello! GeeksforGeeks.
972
Sum of list : 15
Square of int : 25
String : Hello! GeeksforGeeks.
075
Sum of list : 15
Square of int : 25
String : Hello! GeeksforGeeks.
985
Sum of list : 15
Square of int : 25
String : Hello! GeeksforGeeks.
07
Sum of list : 15
Square of int : 25
String : Hello! GeeksforGeeks.
092
Sum of list : 15
Square of int : 25
String : Hello! GeeksforGeeks.
960
Sum of list : 15
Square of int : 25
String : Hello! GeeksforGeeks.
092

 

Sum of list : 15
Square of int : 25
String : Hello! GeeksforGeeks.
1
Sum of list : 15
Square of int : 25
String : Hello! GeeksforGeeks.
075
Sum of list : 15
Square of int : 25
String : Hello! GeeksforGeeks.
07
Sum of list : 15
Square of int : 25
String : Hello! GeeksforGeeks.
075
Sum of list : 15
Square of int : 25
String : Hello! GeeksforGeeks.
000
Sum of list : 15
Square of int : 25
String : Hello! GeeksforGeeks.
001
Sum of list : 15
Square of int : 25
String : Hello! GeeksforGeeks.
002

Sum of list : 15
Square of int : 25
String : Hello! GeeksforGeeks.
1
Sum of list : 15
Square of int : 25
String : Hello! GeeksforGeeks.
004
Sum of list : 15
Square of int : 25
String : Hello! GeeksforGeeks.
07
Sum of list : 15
Square of int : 25
String : Hello! GeeksforGeeks.
072
Sum of list : 15
Square of int : 25
String : Hello! GeeksforGeeks.
9577

Sum of list : 15
Square of int : 25
String : Hello! GeeksforGeeks.
1
Sum of list : 15
Square of int : 25
String : Hello! GeeksforGeeks.
041
Sum of list : 15
Square of int : 25
String : Hello! GeeksforGeeks.
004

 

 

Sum of list : 15
Square of int : 25
String : Hello! GeeksforGeeks.
9581
Sum of list : 15
Square of int : 25
String : Hello! GeeksforGeeks.
07
Sum of list : 15
Square of int : 25
String : Hello! GeeksforGeeks.
9583
Sum of list : 15
Square of int : 25
String : Hello! GeeksforGeeks.
970
Sum of list : 15
Square of int : 25
String : Hello! GeeksforGeeks.
959
Sum of list : 15
Square of int : 25
String : Hello! GeeksforGeeks.
29
Sum of list : 15
Square of int : 25
String : Hello! GeeksforGeeks.
9587
Sum of list : 15
Square of int : 25
String : Hello! GeeksforGeeks.
970
Sum of list : 15
Square of int : 25
String : Hello! GeeksforGeeks.
29
Sum of list : 15
Square of int : 25
String : Hello! GeeksforGeeks.
959
Sum of list : 15
Square of int : 25
String : Hello! GeeksforGeeks.
31
Sum of list : 15
Square of int : 25
String : Hello! GeeksforGeeks.
9587
Sum of list : 15
Square of int : 25
String : Hello! GeeksforGeeks.
970
Sum of list : 15
Square of int : 25
String : Hello! GeeksforGeeks.
959
Sum of list : 15
Square of int : 25
String : Hello! GeeksforGeeks.
29
Sum of list : 15
Square of int : 25
String : Hello! GeeksforGeeks.
959
Sum of list : 15
Square of int : 25
String : Hello! GeeksforGeeks.
31
Sum of list : 15
Square of int : 25
String : Hello! GeeksforGeeks.
959
Sum of list : 15
Square of int : 25
String : Hello! GeeksforGeeks.
33_____2959___9035

Sum of list : 15
Square of int : 25
String : Hello! GeeksforGeeks.
979
Sum of list : 15
Square of int : 25
String : Hello! GeeksforGeeks.
07
Sum of list : 15
Square of int : 25
String : Hello! GeeksforGeeks.
976

 

Sum of list : 15
Square of int : 25
String : Hello! GeeksforGeeks.
9607

Sum of list : 15
Square of int : 25
String : Hello! GeeksforGeeks.
9608
Sum of list : 15
Square of int : 25
String : Hello! GeeksforGeeks.
9609
Sum of list : 15
Square of int : 25
String : Hello! GeeksforGeeks.
31
Sum of list : 15
Square of int : 25
String : Hello! GeeksforGeeks.
971

 

Sum of list : 15
Square of int : 25
String : Hello! GeeksforGeeks.
97____29613____107
Sum of list : 15
Square of int : 25
String : Hello! GeeksforGeeks.
9615

 

Sum of list : 15
Square of int : 25
String : Hello! GeeksforGeeks.
97____29617

Sum of list : 15
Square of int : 25
String : Hello! GeeksforGeeks.
97______2967
Sum of list : 15
Square of int : 25
String : Hello! GeeksforGeeks.
968
Sum of list : 15
Square of int : 25
String : Hello! GeeksforGeeks.
75
Sum of list : 15
Square of int : 25
String : Hello! GeeksforGeeks.
07
Sum of list : 15
Square of int : 25
String : Hello! GeeksforGeeks.
07
Sum of list : 15
Square of int : 25
String : Hello! GeeksforGeeks.
29
Sum of list : 15
Square of int : 25
String : Hello! GeeksforGeeks.
971

Sum of list : 15
Square of int : 25
String : Hello! GeeksforGeeks.
1____29627______107
Sum of list : 15
Square of int : 25
String : Hello! GeeksforGeeks.
9629

_______01____02____03

Sum of list : 15
Square of int : 25
String : Hello! GeeksforGeeks.
041
Sum of list : 15
Square of int : 25
String : Hello! GeeksforGeeks.
9634

 

Sum of list : 15
Square of int : 25
String : Hello! GeeksforGeeks.
97____29636

Sum of list : 15
Square of int : 25
String : Hello! GeeksforGeeks.
97______2993
Sum of list : 15
Square of int : 25
String : Hello! GeeksforGeeks.
968
Sum of list : 15
Square of int : 25
String : Hello! GeeksforGeeks.
75
Sum of list : 15
Square of int : 25
String : Hello! GeeksforGeeks.
07
Sum of list : 15
Square of int : 25
String : Hello! GeeksforGeeks.
07
Sum of list : 15
Square of int : 25
String : Hello! GeeksforGeeks.
31
Sum of list : 15
Square of int : 25
String : Hello! GeeksforGeeks.
971

Sum of list : 15
Square of int : 25
String : Hello! GeeksforGeeks.
1
Sum of list : 15
Square of int : 25
String : Hello! GeeksforGeeks.
9627______107
Sum of list : 15
Square of int : 25
String : Hello! GeeksforGeeks.
9648

Sum of list : 15
Square of int : 25
String : Hello! GeeksforGeeks.
1
Sum of list : 15
Square of int : 25
String : Hello! GeeksforGeeks.
2____03
Sum of list : 15
Square of int : 25
String : Hello! GeeksforGeeks.
045
Sum of list : 15
Square of int : 25
String : Hello! GeeksforGeeks.
9634

 

Sum of list : 15
Square of int : 25
String : Hello! GeeksforGeeks.
97____29655

Sum of list : 15
Square of int : 25
String : Hello! GeeksforGeeks.
97____1005____2971

Sum of list : 15
Square of int : 25
String : Hello! GeeksforGeeks.
1____29627______107
Sum of list : 15
Square of int : 25
String : Hello! GeeksforGeeks.
9662

_______01____02____03

Sum of list : 15
Square of int : 25
String : Hello! GeeksforGeeks.
049
Sum of list : 15
Square of int : 25
String : Hello! GeeksforGeeks.
9634

 

Sum of list : 15
Square of int : 25
String : Hello! GeeksforGeeks.
97____29669

Sum of list : 15
Square of int : 25
String : Hello! GeeksforGeeks.
97______2979____2985
Sum of list : 15
Square of int : 25
String : Hello! GeeksforGeeks.
07
Sum of list : 15
Square of int : 25
String : Hello! GeeksforGeeks.
970

Đầu ra

Sum of list : 15
Square of int : 25
String : Hello! GeeksforGeeks.
0

Trong ví dụ trên, thể hiện của đối tượng không được tạo ban đầu. Các phương thức lớp để đánh giá các biểu thức khác nhau đã được định nghĩa với trình trang trí @classmethod. Bây giờ chúng có thể được gọi với tên lớp và đối tượng được tạo trong phương thức lớp đó sau khi đánh giá biểu thức. Biến thể hiện chứa các câu trả lời khác nhau cho một số lượng tham số khác nhau được truyền

Hai chức năng có thể có cùng tên nhưng mã khác nhau?

Hai hoặc nhiều hàm có thể có cùng tên nhưng khác tham số ; .

Bạn có thể có một chức năng có cùng tên?

Trong C, bạn hoàn toàn không thể có hai hàm trùng tên . Trong C++, hoàn toàn có thể miễn là chữ ký của hàm khác nhau, tức là hai hàm có cùng tên nhưng khác bộ tham số.

Một lớp có thể có nhiều hàm trùng tên không?

Có, chúng ta có thể định nghĩa nhiều phương thức trong một lớp có cùng tên nhưng với các loại tham số khác nhau .

3 loại phương thức trong Python là gì?

Về cơ bản có ba loại phương thức trong Python. Phương thức sơ thẩm. phương pháp lớp. Phương thức tĩnh. .
Một phương thức thể hiện biết thể hiện của nó (và từ đó, nó là lớp)
Một phương thức lớp biết lớp của nó
Một phương thức tĩnh không biết lớp hoặc thể hiện của nó