循环结构 while 语法 int i = 0; while(i<100){ i++; } 注意: 只要布尔表达式为true,循环就会一直执行 多数情况会让循环停止,需要一个让表达式false的方式来结束循环 少部分情况需要循环一直执行,比如服务器的请求响应监听等 循环条件一直为true会无限循环/ ...
分类:
其他好文 时间:
2021-03-01 13:18:26
阅读次数:
0
Java基础 0.idea快捷操作 1 //idea快捷操作 2 public static void main(String[] args){ 3 //idea快捷输入:psvm 4 System.out.println(""); 5 //idea快捷输入:sout 6 } 7 //Ctrl+D: ...
分类:
编程语言 时间:
2021-02-27 13:39:28
阅读次数:
0
private void button2_Click(object sender, EventArgs e) { foreach (Control cur in Controls) { if (cur is TextBox ) { string name = cur.Name; cur.Text = ...
Docker的常用命令 一、帮助命令 # 显示docker的版本信息 docker version # 显示docker的系统信息 docker info # 帮助命令 docker 命令 --help 帮助文档地址 二、镜像命令 1、docker images 查看所有本地的主机上的镜像 [roo ...
分类:
其他好文 时间:
2021-02-27 13:07:07
阅读次数:
0
其实我们可以使用匿名内部类来完成之前的那些操作: 1 package com.hw.second0224; 2 public class MyRunnableTest { 3 public static void main(String[] args) { 4 Runnable r = new Ru ...
分类:
其他好文 时间:
2021-02-25 12:16:42
阅读次数:
0
String 切割成 List<String> 后,再进行其中元素的移除操作的正确姿势: (1) 按需求 进行切割; (2) 切割所得数组,转成 List 集合; (3) 用将原来的集合的数据,复制一遍到新集合中; (4) 操作 新集合,进行移除。 1 public static void main ...
分类:
其他好文 时间:
2021-02-25 12:10:38
阅读次数:
0
Object中有两个涉及到了线程的方法: void wait():让当前线程进入等待状态,直到被唤醒;(会释放锁) void notify():唤醒当前正在等待的线程。(只会通知,不会释放锁) 因为Object是所有类的鼻祖,所以每一个对象都拥有wait()和notify()。 生产者和消费者模型 ...
分类:
其他好文 时间:
2021-02-24 13:12:42
阅读次数:
0
using System; namespace leecode1 { class Program { static void Main(string[] args) { string outString= string.Empty; string s1 = "abc"; string s2 = "p ...
分类:
其他好文 时间:
2021-02-24 12:48:10
阅读次数:
0
数据的基本类型及扩展 1. 数据类型: public class Demo01 { public static void main(String[] args) { //八大数据类型 int num1 = 10; byte num2 = 20; short num3 = 30; long num4 ...
分类:
其他好文 时间:
2021-02-22 11:54:36
阅读次数:
0
# 浮点数中的常见问题 ```javapublic class FloatAndDouble { public static void main(String[] args) { float num1 = 0.1F; double num2 = 1.0/10; System.out.println( ...
分类:
其他好文 时间:
2021-02-19 13:49:06
阅读次数:
0