大橙子网站建设,新征程启航
为企业提供网站建设、域名注册、服务器等服务
用线程控制,启动下面的线程就可以了,new Thread(new Task()).start() ;public class Task implements Runnable {
创新互联主要从事成都网站制作、成都网站建设、网页设计、企业做网站、公司建网站等业务。立足成都服务河南,十载网站建设经验,价格优惠、服务专业,欢迎来电咨询建站服务:13518219792
private TextArea textArea;
public Task(TextArea textArea){
this.textArea = textArea;
}
public void run() {
while (true) {
this.textArea.setText("这漏耐谨里设置: 输出的一返基段文字");
try {
Thread.sleep(500); // 这里设置:隔多长亩穗时间
} catch (Exception e) {
e.printStackTrace();
}
}
}
}
import java.util.Scanner;
public class LoveTest {
static Scanner sc=new Scanner(System.in);
public static void main(String[] args) {
while(true) {
System.out.println("请输入:520");
if(!(sc.nextLine().equals("520"))) {
System.out.println("输入错误!");
}else {
System.out.println("我爱明弯你!");
break;
}
}
System.out.println("回答物槐备正确罩毁,程序结束!");
}
}
public static void main(String[] args) {
int i = 0;
while (i 100){
System.out.println("我喜欢缓宴世你扰肢祥闭");
i++;
}
}
public class Test {
public static void main(String[] args) {
int count=0;
String a="我爱你中国,中国我者或爱你";
for(int i=0;i隐嫌凳灶旅a.length();i++){
if(a.substring(i, i+1).equals("爱")){
count++;
}
}
System.out.println(count);
}
}