常用快捷键 基本的快捷键 描述WindowsMac OS 编辑菜单 Alt + E Ctrl + F2 + F 文件菜单 Alt + F Ctrl + F2 + E 视图菜单 Alt + V Ctrl + F2 + V 全选文本 Ctrl + A Cmd + A 复制文本 Ctrl + C Cmd ...
fork 是一个系统调用,流程的最后会在 sys_call_table 中找到相应的系统调用 sys_fork。 SYSCALL_DEFINE0(fork) { ...... return _do_fork(SIGCHLD, 0, 0, NULL, NULL, 0); } long _do_fork ...
分类:
系统相关 时间:
2021-06-28 20:00:09
阅读次数:
0
创建一个Spring的helloworld项目 创建maven项目,导入Spring的环境依赖 可以参考:https://www.cnblogs.com/nwu-edu/p/9542074.html,为了简化直接导入webmvc的依赖 <dependency> <groupId>org.spring ...
分类:
编程语言 时间:
2021-06-28 19:43:13
阅读次数:
0
Java基础-数字与字符串 装箱与拆箱 1.所有的基本类型,都有对应的类类型,比如int对应的类是Integer,这种类就叫做封装类。 2.数字封装类有Byte,Short,Long,Float,Double...这些类都是抽象类Number的子类,Number类属于java.lang包。 3.基本 ...
分类:
编程语言 时间:
2021-06-28 19:30:44
阅读次数:
0
Caffeine getIfPresent()返回 null 问题 问题 集成 Caffeine 时, 将 Cache 注册为全局的 Bean, 然后通过@Autowired 自动装配 使用 cache.put(key, val) 和 cache.getIfPresent(key) 放入和获取缓存 ...
分类:
其他好文 时间:
2021-06-28 19:10:03
阅读次数:
0
/*单if语句的格式: if(关系表达式){ 语句体; } */ public class SeguenceIf{ public static void main(String [] args){ System.out.println("今天天气不错,正在压马路,突然发现一个好玩的地方:网吧"); ...
分类:
其他好文 时间:
2021-06-28 18:55:48
阅读次数:
0
Apple 在 macOS Catalina 中引入了 Split View,让您可以同时查看两个应用程序。如果同时处理多个应用程序,但在它们之间切换时感到沮丧,小编教给大家在 Macbook Pro/AIr 或 iMac 上使用分屏功能流畅地进行多任务处理。 注意:您可以在所有运行 OS X El ...
分类:
移动开发 时间:
2021-06-28 18:42:08
阅读次数:
0
select t.type,t.name 表名 from sysobjects t where t.type in ('U','v' ,'TR') and t.name like '%%';select t.type,t.name 表名,f.name 列名 from sysobjects t, sy ...
分类:
数据库 时间:
2021-06-28 18:13:06
阅读次数:
0
新建文件后缀名为.java 编写代码 public class Hello{ public static void main(String[] args) { System.out.print("Hello,world!"); } } 通过javac编译 java文件,生成一个同名class文件 运 ...
分类:
编程语言 时间:
2021-06-28 18:02:14
阅读次数:
0
zkClient操作 基本增删改查代码如下 public class createSession { public static void main(String[] args) { ZkClient zkClient = new ZkClient("119.45.52.68:2181"); Sys ...
分类:
其他好文 时间:
2021-06-28 18:01:05
阅读次数:
0