break 和 continue break在任何循环语句的主体部分,均可以用于控制循环的流程。用于强行退出循环,不执行循环中剩余的语句。 也可以用于switch语句中 package com.kuang.struct; public class BreakDemo01 { public stati ...
分类:
其他好文 时间:
2021-03-03 12:26:35
阅读次数:
0
C - Cross-Stitch tag: 构造, 欧拉回路 题意 十字绣穿针引线,保证 'X' 八联通 思路 这样构造,然后正反跑欧拉回路 #include<bits/stdc++.h> using namespace std; const int N = 3e5 + 10; typedef lo ...
分类:
其他好文 时间:
2021-03-03 12:15:26
阅读次数:
0
typedef type newname; // 为已有的类型取一个新名字 // 枚举类型 enum color {red, green=5, yellow}; // color: 枚举名 // red, green, yellow: 标识符 // 默认,第一个标识符的值为0,第二个标识符的值为1, ...
分类:
编程语言 时间:
2021-03-01 13:50:41
阅读次数:
0
std::map的实现 template <class Pair> struct Select1st_ { const typename Pair::first_type& operator()(const Pair& x) const { return x.first; } }; template ...
分类:
其他好文 时间:
2021-03-01 13:20:12
阅读次数:
0
结构变量的声明和初始化 #include <cstdio> int main() { struct { int age; int height; } x, y = {29, 180}; // 结构的成员在内存中按照声明的顺序存储 x.age = 30; x.height = 170; return ...
分类:
编程语言 时间:
2021-02-27 13:32:58
阅读次数:
0
#include <bits/stdc++.h> using namespace std; typedef long long ll; typedef pair<int, int> ii; typedef vector<int> vi; typedef vector<ii> vii; typedef ...
分类:
编程语言 时间:
2021-02-27 13:27:43
阅读次数:
0
//super关键字 //1、作为函数调用,调用父类的构造函数. //ES6中要求,在字类构造函数中,必须执行一个super函数 //super指向父类的原型不是父类class class A { constructor(x) { this.x = x } } class B extends A { ...
分类:
其他好文 时间:
2021-02-27 13:27:26
阅读次数:
0
1.指定到人 @Override @Transactional(rollbackFor = Exception.class) // @GlobalTransactional public boolean startProcess(ProcessPurchaseOrder bean) { //是否启动 ...
分类:
其他好文 时间:
2021-02-26 13:05:55
阅读次数:
0
一、JAVA HEAP内存空间 Memory structure Of a JVM process java堆内存空间分为: 新生代 新生区(Eden):初创对象 存活区(Survivor):步入成熟期的初创对象 ss1: ss2: 老年代 mark --> compact 持久代 垃圾回收期: 新 ...
分类:
其他好文 时间:
2021-02-25 11:53:46
阅读次数:
0
A - Circle #include<bits/stdc++.h> using namespace std; const int N = 1e6 + 5; typedef long long LL; int r; int main(){ cin >> r; cout << r * r << end ...
分类:
其他好文 时间:
2021-02-24 13:15:50
阅读次数:
0