package com.day13.math;
/**
* 类说明 :模拟QQ聊天与视频聊天同时进行
* @author 作者 : chenyanlong
* @version 创建时间:2017年10月29日
*/
public class ThreadTest {
public static void main(String[] args) {
TalkThread talkThread=new TalkThread();
VideoThread videoThread=new VideoThread();
talkThread.start();
videoThread.start();
}
}
//发起视频
class TalkThread extends Thread{
//重写run()方法
@Override
public void run(){
while(true){
System.out.println("霞霞,开视频呗!");
}
}
}
//视频
class VideoThread extends Thread{
//重写run方法
@Override
public void run(){
while(true){
System.out.println("好啊,那开视频呀!");
}
}
}