我看的这本是Bjarne Stroustrup写的,南开大学的杨巨峰和王刚译的。这本书不适合初学者看,我就是大概翻了翻其中感兴趣的章节。 这本书第14章的标题是“历史和兼容性”,这节内容我看了收获很深。p144-145的内容值得去看。 从中可以看出,ISO C和ISO C++是K&R C [Kern ...
分类:
编程语言 时间:
2020-01-21 23:13:46
阅读次数:
75
RxJS is a library for composing asynchronous and event-based programs by using observable sequences. It provides one core type, the Observable, satell ...
分类:
Web程序 时间:
2020-01-21 16:08:30
阅读次数:
133
The secured object is an abstract representing whatever is secured. It may be a MethodInvocation in case of @Secured, @RolesAllowed, @PreFilter and @P ...
分类:
编程语言 时间:
2020-01-21 14:42:49
阅读次数:
84
A - Cow Contest N (1 ≤ N ≤ 100) cows, conveniently numbered 1..N, are participating in a programming contest. As we all know, some cows code better th ...
分类:
其他好文 时间:
2020-01-21 00:23:35
阅读次数:
73
#Java#Spring#SpringBoot#H2#数据库#新增#修改#查询#删除# SpringBoot H2数据库新增、修改、查询、删除 视频讲解: https://www.bilibili.com/video/av83944935/ H2Application.java package co ...
分类:
数据库 时间:
2020-01-20 21:00:57
阅读次数:
80
//导出报表 $('#exportStatement').click(function () { var exportUrl = ctxPath + 'supplierOperate/exportStatement'; var startTime = $('#startTime').val(); i ...
分类:
其他好文 时间:
2020-01-20 16:19:05
阅读次数:
119
加密和签名使用不同的密钥对,签名密钥对的私钥用于签名,其对应的公钥用于验证签名。 加密密钥对的公钥用于加密,其对应的私钥用于解密。 1.生成密钥对 /** * 生成RSA随机密钥对(公钥和私钥) * @return */ public static Map<String, String> creat ...
分类:
其他好文 时间:
2020-01-20 09:50:50
阅读次数:
108
1 Kibana的显示配置 https://demo.elastic.co/app/kibana#/dashboard/welcome_dashboard 环境先处理干净 安装nginx和httpd-tools 2 使用压测工具产生日志 [root@node4 ~]# ab -n 100 -c 10 ...
分类:
Web程序 时间:
2020-01-19 15:20:03
阅读次数:
121
概述:上节咱们说了特征工程是机器学习的一个核心内容。然后咱们已经学习了特征工程中的基础内容,分别是missing value handling和categorical data encoding的一些方法技巧。但是光会前面的一些内容,还不足以应付实际的工作中的很多情况,例如如果咱们的原始数据的fea ...
分类:
其他好文 时间:
2020-01-19 12:38:54
阅读次数:
54
Heap.h 1 #include <algorithm> 2 #include <cassert> 3 4 using namespace std; 5 6 template<typename Item> 7 class MaxHeap{ 8 private: 9 Item *data; 10 i ...
分类:
编程语言 时间:
2020-01-19 09:51:43
阅读次数:
103