推荐
专栏
教程
课程
飞鹅
本次共找到5859条
地下城与勇士
相关的信息
Wesley13
•
4年前
java中string和stringbuffer
String s"Hello";s"World";//以上代码等价与下述代码StringBuffer sbnew StringBuffer(s);sb.append("world");ssb.toString();StringBuffer会产生许多临时对象,从而导致程序的执行效率变低,
Wesley13
•
4年前
STL不同容器的使用方法
以下内容摘自:http://blog.csdn.net/u014465639/article/details/70241850 1、vector(需要导入头文件include<vector) ①定义与初始化 如果没有指定元素的初始化
浪人
•
4年前
安卓内存优化
Android内存1.Android内存分配与回收机制从ApplicationFramework、Dalvik/Art、Linux内核三个部分来讲解关于Androd内存相关的知识(1)ApplicationFramework(https://imghelloworld.osscnbeijing.a
Easter79
•
4年前
SpringBoot系列——Jackson序列化
前言 SpringBoot提供了与三个JSON映射库的集成:GsonJacksonJSONB Jackson是首选的默认库。 官网介绍: https://docs.spring.io/springboot/docs/2.1.6.RELEASE/reference/html/boot
Stella981
•
4年前
Paxos算法与Zookeeper分析,zab (zk)raft协议(etcd) 8. 与Galera及MySQL Group replication的比较
mit分布式论文集https://github.com/feixiao/DistributedSystemswiki上描述的几种都明白了就出师了(https://www.oschina.net/action/GoToLink?urlhttps%3A%2F%2Fen.wikipedia.org%2Fwiki%2FPaxos_%28comput
Stella981
•
4年前
SpringBoot系列——Jackson序列化
前言 SpringBoot提供了与三个JSON映射库的集成:GsonJacksonJSONB Jackson是首选的默认库。 官网介绍: https://docs.spring.io/springboot/docs/2.1.6.RELEASE/reference/html/boot
Wesley13
•
4年前
EFK教程(3)
!(https://fzxiaomange.com/img/efk/multiinstancecover.png)基于ElasticSearch多实例架构,实现资源合理分配、冷热数据分离作者:“发颠的小狼”,欢迎转载与投稿目录▪用途▪架构▪192.168.1.51elasticsear
Stella981
•
4年前
Python基础(二)
1.赋值语句(1)作用:定义赋值(2)复合与链式赋值ab2a2(3)特殊类型的赋值序列的赋值:a,b,c(1,2,3)print(a,b,c)变量交换:a
Wesley13
•
4年前
mysql中int、bigint、smallint 和 tinyint的区别与长度
通过创建一张表,来看看mysql中intbigintsmallint和tinyint的区别与长度1、在mysql命令行创建如下表CREATETABLEtest_int_1(int_idintNOTNULL,bigint_idbigintDEFAULTNULL,
Stella981
•
4年前
Netty(7)
改造timer,即客户端与服务端建立连接后,服务端主动向客户端发送当前时间。server:ch.pipeline().addLast(newTimeEncoder());ch.pipeline().addLast(newTimeServerHandler());TimeServerHandlerpubliccl
1
•••
156
157
158
•••
586