码迷,mamicode.com
首页 >  
搜索关键字:Insufficient system    ( 49344个结果
LeetCode160
题目链接 https://leetcode-cn.com/problems/intersection-of-two-linked-lists/ 初次读题 初次读题可知 两个指针相同即需要求得的结果 链表长度可能不同 两个链表可能没有交叉点,此时返回NULL 不可修改链表结构 链表中无循环 我第一次读 ...
分类:其他好文   时间:2020-07-10 23:51:38    阅读次数:63
.NET ------ 多线程的简单使用
主要就是引用线程,实例化一个线程将需要执行的一个方法交给他,启动,执行完后自动关闭也可以手动关闭 //引用 using System.Threading; 使用 //实例化一个线程 Thread t1 = new Thread(CopyGongZi); //启动 t1.Start(); 注意,在线程 ...
分类:编程语言   时间:2020-07-10 23:49:47    阅读次数:62
使用Nucleus SE实时操作系统
使用Nucleus SE实时操作系统 Using the Nucleus SE real-time operating system 到目前为止,在本系列文章中,我们详细介绍了Nucleus SE提供的所有设施。现在是时候看看如何在一个真正的嵌入式软件应用程序中使用它。 什么是核SE? 我们知道Nu ...
分类:其他好文   时间:2020-07-10 20:47:09    阅读次数:56
MySQL基础_简介
一、数据库的好处 持久化数据到本地 可以实现结构化查询,方便管理 二、数据库相关概念 数据库DB(DataBase):保存一组有组织的数据的容器。 数据库管理系统DBMS(DataBase Management System):又称为数据库软件,用于管理DB中的数据,比如MySQL、 Oracle、 ...
分类:数据库   时间:2020-07-10 19:17:35    阅读次数:69
2020/7/10 JAVA常用Api之String类和字符串缓冲区、正则表达式
一、String类 1、String类的概述: 查阅API中的String类的描述,发现String 类代表字符串。Java 程序中的所有字符串字面值(如 "abc" )都作为此类的实例实现。 //演示字符串 String str = "oracle"; str = "甲骨文"; 继续查阅API发现 ...
分类:编程语言   时间:2020-07-10 18:52:50    阅读次数:55
【Eclipse Maven项目 Spring4 MVC 配置 Freemarker视图添加 templateLoaderPath 时报错】
在Eclipse Maven项目 Spring4 MVC 配置 Freemarker视图时报错 在spring-mvc.xml中添加如下块 <!-- freemarker config --> <bean id="freemarkerConfig" class="org.springframewor ...
分类:编程语言   时间:2020-07-10 17:23:31    阅读次数:87
函数式接口
1 /** 2 * @author jliu.l 3 * @2020年7月8日 4 * 5 */ 6 public class Demo01Logger { 7 public static void showLog(int level,MessageBuilder mb) { 8 if(level= ...
分类:其他好文   时间:2020-07-10 17:03:01    阅读次数:53
函数式接口作为参数
1 /** 2 * @author jliu.l 3 * @2020年7月10日 4 * 5 */ 6 public class Demo01Runnable { 7 8 public static void startThread(Runnable run) { 9 new Thread(run) ...
分类:其他好文   时间:2020-07-10 16:59:48    阅读次数:62
Leslie Lamport在其一篇影响深远的论文《Time,Clocks and the Ordering of Events in a Distributed System》
《Time,Clocks and the Ordering of Events in a Distributed System》 绕不开的Leslie Lamport 数学【数学是皇帝,物理是皇后】。【宗教:万佛朝宗】 归纳,类比,演绎,反证。 第一性原理。数学,物理,宗教。。。 etcd is w ...
分类:其他好文   时间:2020-07-10 16:58:29    阅读次数:72
万年历
1 /** 2 * @author jliu.l 3 * @2020年7月7日 4 * 5 */ 6 public class Calendar { 7 8 public static void main(String[] args) { 9 System.out.println(" 万年历 "); ...
分类:其他好文   时间:2020-07-10 16:49:45    阅读次数:145
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!