
获得徽章 14
- xdm,刷到一个博主的沸点实现一下可套用,附上demo!
/**
* @desc: 爱情
* @author: why
* @data: 农历 · 七月初七
*/
public class Love {
static String you = "名字缩写";
/**
* 我一直在找你
* 当我找到你
* 也就找到了整个世界
*/
public static void main(String[] args) {
while (I.findYou()) {
if (I.get() == you) {
System.out.println("Hello,Word");
}
}
}
public static class I {
public static boolean findYou() {
return true;
}
public static String get() {
return "名字缩写";
}
}
}展开21