做好的明细表样式一定要点右键 -> 另存为模板: 这样才能自行的记录到如下路径文件中:C:\Program Files\Siemens\NX 10.0\UGII\table_files\tables.pax 用 UG NX 打开上面的文件,自动添加到侧边栏: ...
分类:
其他好文 时间:
2021-06-28 17:50:02
阅读次数:
0
function a1() { return new Promise(o => { console.log("a1") o('a1_1') }) } async function a2() { const _a2 = await a1() console.log(_a2); console.log( ...
分类:
其他好文 时间:
2021-06-28 17:45:59
阅读次数:
0
public void startC138() { new Thread(() -> { try { Thread.sleep(10000); String killredis = "/home/bjlthy/gym/code/killredis.sh"; Process ps = Runtime. ...
分类:
编程语言 时间:
2021-06-28 17:45:28
阅读次数:
0
Markdown学习 标题 #+标题名字 #一级标题 #二级标题....... 二级标题 三级标题 四级标题 字体 粗体 ** ** ctrl+B 斜体 ** ctrl+I 分割线 *** 引用 > 这是引用内容 图片 超链接 超链接名字 这是百度超链接 列表 1.空格 -.空格 空格 表格 名字 ...
分类:
其他好文 时间:
2021-06-28 17:43:39
阅读次数:
0
//虚线 DoubleCollection dc = new DoubleCollection(); dc.Add(2); DashStyle dashstyle = new DashStyle(); dashstyle.Dashes = dc; Pen renderPen = new Pen(ne ...
1.弹出框表单里面获取对应要编辑的值 (jQuery 取值+赋值) <tr> <td>{{item.fid}}</td> 3 <td>{{item.name}}</td> 2 <td>{{item.price}}</td> 1 <td>{{item.quantity}}</td> 0 <td><a ...
分类:
其他好文 时间:
2021-06-28 17:40:26
阅读次数:
0
操作字符串的类有:String、StringBuffer、StringBuilder。 String 和 StringBuffer、StringBuilder 的区别在于 String 声明的是不可变的对象,每次操作都会生成新的 String 对象,然后将指针指向新的 String 对象,而 Str ...
分类:
编程语言 时间:
2021-06-28 17:39:55
阅读次数:
0
使用 StringBuilder 或者 stringBuffer 的 reverse() 方法。 示例代码: // StringBuffer reverse StringBuffer stringBuffer = new StringBuffer(); stringBuffer. append("a ...
分类:
其他好文 时间:
2021-06-28 17:39:09
阅读次数:
0
import java.util.ArrayList; import java.util.Arrays; import java.util.List; /** * @author: small-sunshine * @Description:考拉兹猜想,100万以内的数 * @date: 2021/ ...
分类:
其他好文 时间:
2021-06-25 17:25:25
阅读次数:
0
1.什么是线程? 进程作为操作系统执行程序的基本单位,拥有应用程序的资源,进程包含线程,进程的资源被线程共享,线程不拥有资源。 2.前台线程和后台线程的区别? 程序关闭时,后台线程直接关闭,但前台线程会执行完后关闭。 通过Thread类新建线程默认为前台线程。其他方式创建的都是后台线程。 多线程的几 ...
分类:
编程语言 时间:
2021-06-25 17:18:40
阅读次数:
0