ipcmain.js var {ipcMain,BrowserWindow} =require('electron'); var path=require('path'); var win=null; //接收到广播 ipcMain.on('openWindow',function(event,ai ...
select a.Name as Employee from employee a left join employee b on b.id = a.managerID where a.Salary > b.Salary ...
分类:
其他好文 时间:
2020-12-29 11:14:10
阅读次数:
0
java中的多线程在java中要想实现多线程,有两种手段,一种是继续Thread类,另外一种是实现Runable接口。对于直接继承Thread的类来说,代码大致框架是:class类名extendsThread{方法1;方法2;…publicvoidrun(){//othercode…}属性1;属性2;…}先看一个简单的例子:/***@authorRollen-Holt继承Thread类,直接调用r
分类:
编程语言 时间:
2020-12-29 11:06:18
阅读次数:
0
<el-menu class="left-menu" :default-active="$route.name" :unique-opened="true" :collapse="isCollapse"> <template v-for="(m, x) in menuOpts.data" > <el ...
分类:
其他好文 时间:
2020-12-28 10:57:57
阅读次数:
0
本章概要: 线程的优点与进程的缺点,以及线程共享属性 pthread数据类型 pthread_create()/pthread_exit()/pthread_self()/pthread_join()/pthread_detach()/pthread_yield() pthread_attr_ini ...
分类:
编程语言 时间:
2020-12-25 12:23:37
阅读次数:
0
需求:根据用户编号查询用户信息以及用户所有订单信息 sql语句为: select u.*,o.*,o.id oid from kuser u join orders o on o.user_id = u.id where u.id = 1; UserMapper.xml <?xml version= ...
分类:
其他好文 时间:
2020-12-25 11:44:27
阅读次数:
0
/** * Definition for a binary tree node. * public class TreeNode { * int val; * TreeNode left; * TreeNode right; * TreeNode(int x) { val = x; } * } */ ...
分类:
其他好文 时间:
2020-12-23 11:52:45
阅读次数:
0
题意: 戳这里 分析: \(sam\) 裸题,求第 \(k\) 大字符串 首先建出 \(sam\) 然后求出 \(siz[i]\) 表示 \(i\) 节点代表的串的 \(endpos\) 的集合大小 然后分情况讨论: \(T==0\) 只统计本质不同的串的个数,所以所有点的 \(siz[i]\) 都 ...
分类:
编程语言 时间:
2020-12-23 11:33:36
阅读次数:
0
private openChrome(uri: any) { uri = uri.split('&').join('^&'); // 转义 // ActiveObject仅在IE下可创建 需要在IE internet选项中配置安全级别才行具体详见百度 var objShell = new Activ ...
分类:
其他好文 时间:
2020-12-21 11:34:44
阅读次数:
0
一、报错信息 错误代码: 1064 You have an error in your SQL syntax; check the manual that corresponds to your MySQL server version for the right syntax to use nea ...
分类:
数据库 时间:
2020-12-21 11:09:26
阅读次数:
0