You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
23 lines
455 B
23 lines
455 B
package com.msb.observer.v1;/**
|
|
* @Author bingor
|
|
* @Date 2022/10/13 19:05
|
|
* @Description: com.msb.observer
|
|
* @Version: 1.0
|
|
*/
|
|
|
|
/**
|
|
*@ClassName Observer01
|
|
*@Description 面向过程的方式
|
|
*@Author bingor
|
|
*@Date 2022/10/13 19:05
|
|
*@Version 3.0
|
|
*/
|
|
public class Observer01 {
|
|
public static void main(String[] args) {
|
|
boolean cry = false;
|
|
while ( ! cry) {
|
|
System.out.println("继续观察……");
|
|
}
|
|
}
|
|
}
|