摘要:
TCP 通话实现: 服务器端 ``` import socket import threading import time ''' 服务器端 ''' flag = 1 def TcpLink(sock, addr): print('接收到一个来自%s:%s的连接' % addr) sock.send 阅读全文
摘要:
``` interface Interface{ } class Father{ public Father() { } protected void pln(T sT) { System.out.println(sT); } public void F1() { pln(this); } prot 阅读全文