摘要:
1、正常,同时开启两个线程 //启动函数 public void Test() { Thread thread1 = new Thread(() => SC1()); thread1.Start(); Thread thread2 = new Thread(() => SC2()); thread2 阅读全文
摘要:
List<Object> 相关 //检索 hgEntity = list.stream().filter(item -> item.getQuarter().equals(nameList.get(finalI)) && item.getType().equals("合格")).findFirst( 阅读全文
摘要:
1、委托 namespace ConsoleApp1 { class Program { public delegate void Del(string message); static void Main(string[] args) { Del hanld = new Del(DelegateM 阅读全文
摘要:
方法一、 注意:1.替换文本的占位符为 ${xxx} ,在word中填写的时候,需要一次性输入,最好是在text编辑器中写好,然后复制过去。否则可能会被识别为 ${,xxx,} ,就无法替换了。 package org.jeecg.modules.utils; import cn.hutool.co 阅读全文
摘要:
一、关闭杀死当前进程 使用System.Environment.Exit(0)在开发电脑关闭正常,其他电脑运行有存在程序停止运行等问题,采用杀死进程的方法 private void Browser_FormClosed(object sender, FormClosedEventArgs e) { 阅读全文