前言 本篇文章主要介绍 Spring 中 BeanFactory 的扩展 ApplicationContext,我们平时日常开发中也基本上是使用它,不会去直接使用 BeanFactory。 那么在 Spring 中 BeanFactory 和 ApplicationContext 有什么区别呢? B ...
分类:
编程语言 时间:
2020-06-07 13:09:01
阅读次数:
57
#free命令详解 ##1. 简介 free 命令是一个既简单又复杂的命令。简单是因为这个命令的参数少,输出结果清晰。说它复杂则是因为它背后是比较晦涩的操作系统中的概念,如果不清楚这些概念,即便看了 free 命令的输出也 get 不到多少有价值的信息。 ##2. free常用参数介绍 1.free ...
分类:
其他好文 时间:
2020-06-07 12:42:36
阅读次数:
103
反转一个单链表。 示例: 输入: 1->2->3->4->5->NULL 输出: 5->4->3->2->1->NULL // 将链表分为new和old两个链表 // curOld是old链表的头指针 // curNew是new链表的头指针 // 本质上讲old链表的结点一个一个取出后,将取出的节点 ...
分类:
其他好文 时间:
2020-06-06 18:51:43
阅读次数:
58
https://www.unboundtech.com/cryptocurrency-exchange-hacks/ 2018-9 continues to be the year of the hack, with 23 recorded exchange hacks within the pas ...
分类:
其他好文 时间:
2020-06-05 15:22:30
阅读次数:
135
题目描述: 给你一个字符串 s ,请你根据下面的算法重新构造字符串: 从 s 中选出 最小 的字符,将它 接在 结果字符串的后面。 从 s 剩余字符中选出 最小 的字符,且该字符比上一个添加的字符大,将它 接在 结果字符串后面。 重复步骤 2 ,直到你没法从 s 中选择字符。 从 s 中选出 最大 ...
分类:
其他好文 时间:
2020-06-05 13:32:47
阅读次数:
90
elasticsearch 模块 Elasticsearch低级客户端。提供从Python到ES REST端点的直接映射。 连接集群节点 指定连接 es = Elasticsearch( ['172.16.153.129:9200'], # 认证信息 # http_auth=('elastic', ...
分类:
编程语言 时间:
2020-06-04 18:05:45
阅读次数:
69
package com.steven.array; public class ArrayDemo2 { public static void main(String[] args) { int[] arrays = {1, 2, 3, 4, 5}; // 打印数组中所有的元素 for (int i ...
分类:
编程语言 时间:
2020-06-04 01:34:38
阅读次数:
62
系统环境:CentOS Linux release 7.7.1908 (Core) 网上看到,很多说关于yum update和yum upgrade的区别是, update会升级所有包同时也升级软件和系统内核,而upgrade只升级所有包,不升级软件和系统内核 这种说法是错误的!!!!!!!!! 首 ...
分类:
其他好文 时间:
2020-06-03 21:59:05
阅读次数:
86
#include <iostream> #include <fstream> #include <string> #include <vector> using namespace std; int ReverseInt(int i) { unsigned char ch1, ch2, ch3, c ...
分类:
编程语言 时间:
2020-06-03 20:37:56
阅读次数:
77
引用NModbus 在NuGet搜索NModbus,添加引用。 封装ModbusTcp类 public class ModbusTCP { private ModbusFactory modbusFactory; private IModbusMaster master; private TcpCl ...
分类:
数据库 时间:
2020-06-03 20:03:11
阅读次数:
56