Let's go
上一页 1 ··· 3 4 5 6 7 8 9 10 11 ··· 55 下一页
摘要: 1、正常,同时开启两个线程 //启动函数 public void Test() { Thread thread1 = new Thread(() => SC1()); thread1.Start(); Thread thread2 = new Thread(() => SC2()); thread2 阅读全文
posted @ 2022-08-20 09:31 chenze 阅读(26) 评论(0) 推荐(0) 编辑
摘要: List<Object> 相关 //检索 hgEntity = list.stream().filter(item -> item.getQuarter().equals(nameList.get(finalI)) && item.getType().equals("合格")).findFirst( 阅读全文
posted @ 2022-07-27 17:09 chenze 阅读(34) 评论(0) 推荐(0) 编辑
摘要: 1、委托 namespace ConsoleApp1 { class Program { public delegate void Del(string message); static void Main(string[] args) { Del hanld = new Del(DelegateM 阅读全文
posted @ 2022-07-13 12:27 chenze 阅读(24) 评论(0) 推荐(0) 编辑
摘要: 方法一、 注意:1.替换文本的占位符为 ${xxx} ,在word中填写的时候,需要一次性输入,最好是在text编辑器中写好,然后复制过去。否则可能会被识别为 ${,xxx,} ,就无法替换了。 package org.jeecg.modules.utils; import cn.hutool.co 阅读全文
posted @ 2022-04-14 14:18 chenze 阅读(1360) 评论(0) 推荐(0) 编辑
摘要: 一、关闭杀死当前进程 使用System.Environment.Exit(0)在开发电脑关闭正常,其他电脑运行有存在程序停止运行等问题,采用杀死进程的方法 private void Browser_FormClosed(object sender, FormClosedEventArgs e) { 阅读全文
posted @ 2022-03-23 17:34 chenze 阅读(27) 评论(0) 推荐(0) 编辑
上一页 1 ··· 3 4 5 6 7 8 9 10 11 ··· 55 下一页
有事您Q我