package com.kwan.shuyu.lesson6; public class TalkStuden { public static void main(String[] args) throws Exception { new Thread(new TalkSend(7777, "localhost", 9999)).start(); new Thread(new TalkReceive(8888, "老师")).start(); } }