所以我正在学习套接字,特别是客户端服务器网络,我的一个问题是是否可以通过套接字发送函数?
我知道你可以这样做:
#class containing function, called printing_class
print.py
class printing_class(self):
def print(self):
print("hello world")
#server.py
from print import printing_class
print = printing_class(self)
server.send(print) #pseudocode for send statement, sending print object
#client.py
print = client.receive() #pseudo code for print and receive
print.print() # by doing this, prints out hello world
通过发送一个对象,我可以访问它的方法然后打印它。
但是,我想知道是否有办法做到这一点:
#server.py
server.send(print("hello world"))
#client.py
client.receive() # when receiving from server, automatically prints it
是否可以通过套接字发送打印函数,当客户端收到它时,它会自动打印它?
摇曳的蔷薇
相关分类