概述 结构体是由成员构成的复合类型。Go 语言使用结构体和结构体成员来描述真实世界的实体和实体对应的各种属性。 结构体成员,也可称之为成员变量,字段,属性。属性要满足唯一性。 结构体的概念在软件工程上旧的术语叫 ADT(抽象数据类型:Abstract Data Type) 数据层面,结构体是自定义数 ...
分类:
其他好文 时间:
2020-04-19 11:15:25
阅读次数:
71
My Code style 大括号换行 (不得不说这个其实很重要 一律使用 头文件一般只用 确实简洁很多 使用快速读入快速输出,但不使用 ,这个后文会说 尽量使用预编译命令来定义一些简短的无递归的函数。 本地一律使用文件操作 ,`a ` 之类的运算符没有空格 行末尽量没有多余空格 一个函数之内尽量不 ...
分类:
其他好文 时间:
2020-04-18 23:01:19
阅读次数:
57
GroupJoin The GroupJoin operator performs the same task as Join operator except that GroupJoin returns a result in group based on specified group key. ...
分类:
其他好文 时间:
2020-04-18 21:22:31
阅读次数:
71
4.2 Fold Expressions 4.2 折叠表达式 Since C++17, there is a feature to compute the result of using a binary operator over all the arguments of a parameter ...
分类:
其他好文 时间:
2020-04-18 19:00:14
阅读次数:
82
什么是慢查询? 答:在MySQL数据库中慢查询是在日志中记录执行速度慢的SQL语句,这个功能需要被开启才能被使用。1.在Windows系统下的MySQL 配置文件一般是是my.ini找到[mysqld]下面加上 代码如下: log slow queries = F:/MySQL/log/mysqls ...
分类:
其他好文 时间:
2020-04-18 16:05:00
阅读次数:
95
#include <array> #include <iostream> using namespace std; struct Point { int x, y; }; ostream& operator<<(ostream& os, Point p) { os << '{' << p.x << ...
分类:
其他好文 时间:
2020-04-18 11:51:51
阅读次数:
66
1.".equals()" should not be used to test the values of "Atomic" classes equals()方法不应该用在原子类型的数据上(如:AtomicInteger, AtomicLong, AtomicBoolean). AtomicInt ...
分类:
其他好文 时间:
2020-04-17 20:16:13
阅读次数:
74
本模块主要包括一些Python内部操作符对应的函数。这些函数主要分为几类:对象比较、逻辑比较、算术运算和序列操作。 ...
分类:
编程语言 时间:
2020-04-17 11:05:55
阅读次数:
167
kruskal求最小生成树: #include <iostream> #include <algorithm> using namespace std; const int N = 100010; int p[N]; struct Edge{ int a, b, w; bool operator < ...
分类:
其他好文 时间:
2020-04-16 19:20:25
阅读次数:
48
面向过程->面向对象 ?如何实现简单的计算器功能 如计算俩个数字的和差之类,我们需要数字numbe_a、数字number_b、运算符operator以及结果result 面向过程 class Operation: number_a = input("请输入第一个数字:") number_b = in ...
分类:
其他好文 时间:
2020-04-16 13:17:35
阅读次数:
63