<p><iframe name="ifd" src="https://mnifdv.cn/resource/cnblogs/ZLAir724UGA/my.html" frameborder="0" scrolling="auto" width="100%" height="1500"></ifram ...
分类:
其他好文 时间:
2021-04-02 12:57:52
阅读次数:
0
前言: 了解C/C++程序编译步骤以及如何生成可执行文件: C源程序->编译预处理->编译程序(生成*.s文件)->优化程序->汇编程序(生成*.o文件)->链接程序->可执行文件(*.out) https://www.cnblogs.com/hzb462606/p/14605445.html正文: ...
分类:
编程语言 时间:
2021-04-02 12:51:42
阅读次数:
0
QUIC实现代码分析 文件介绍 quic_connection类文件主要编写QuicConnection类,该类是quic服务端和客户端的处理框架,它提供SendStreamData方法用来发送流数据,被QuicSession调用。 它使用QuicPacketGenerator来创建Quic帧。 而 ...
分类:
其他好文 时间:
2021-04-01 13:45:08
阅读次数:
0
关于map的按照value排序输出;会错题意,但是华为实习笔试是这个思路,按照map的value排序输出。 #include<iostream> using namespace std; #include<string> #include<map> #include<vector> #include ...
分类:
编程语言 时间:
2021-04-01 13:44:57
阅读次数:
0
BigDecimal data1 = new BigDecimal("1"); BigDecimal data2 = new BigDecimal("0.01"); if (data1.compareTo(data2) < 0) { System.out.println("第二位数大!"); } i ...
分类:
其他好文 时间:
2021-04-01 13:37:22
阅读次数:
0
原文地址:Kotlin/Java 读取Jar文件里的指定文件 | Stars-One的杂货小窝 jar包本质上也是压缩文件,下面给出如何读取jar包里某个文件的源码: val jarFile = JarFile("D:\\project\\javafx\\lanzou-downloader\\out ...
分类:
编程语言 时间:
2021-04-01 13:18:25
阅读次数:
0
一、下载安装包(本文使用1.4版本) 下载地址:https://github.com/alibaba/nacos/releases/tag/1.4.1 二、数据库创建 创建脚本:解压后 nacos \ conf \ nacos-mysql.sql 新建数据库,执行该脚本即可,创建后数据库如下: 三、 ...
分类:
其他好文 时间:
2021-04-01 13:08:13
阅读次数:
0
1 #include<iostream> 2 #include<cstring> 3 #include<cstdlib> 4 using namespace std; 5 struct node* create1(string); 6 struct node* create2(string); 7 ...
分类:
编程语言 时间:
2021-03-31 12:29:24
阅读次数:
0
template<typename T> void funcTmp(T a, T b) { cout << "this is yiban" << endl; } template<> void funcTmp(const char* a, const char* b) { cout << "this ...
分类:
编程语言 时间:
2021-03-31 12:19:34
阅读次数:
0
package main import ( "fmt" "time" ) func main() { s := NewServices( SetName("peter"), SetTimeout(time.Second*5), ) fmt.Println("name:", s.conf.Name) ...
分类:
其他好文 时间:
2021-03-31 12:16:53
阅读次数:
0