public delegate void Del(); public delegate string DelStr(string name); class Program { static string Name = string.Empty; static void Main(string[] a... ...
分类:
其他好文 时间:
2017-08-10 15:37:24
阅读次数:
212
js 判断window操作系统 1function detectOS() { var sUserAgent = navigator.userAgent; var isWin = (navigator.platform == "Win32") || (navigator.platform == "Wi... ...
洛谷P1455 搭配购买 把需要一起购买的物品放到并查集里,每一个并查集的标志是根节点,把v和w都累加,然后对根节点做01背包。 ...
分类:
其他好文 时间:
2017-08-10 13:38:39
阅读次数:
146
如果要在一段代码中抛出一个已检查的异常,有两个选择: 使用try-catch块处理已检查的异常。 在方法/构造函数声明中用throws子句指定。 使用try-catch块处理已检查的异常。 在方法/构造函数声明中用throws子句指定。 语法 throws子句的一般语法是: 1 2 3 <modif ...
分类:
编程语言 时间:
2017-08-10 13:34:56
阅读次数:
142
1.合并相似代码:牢记心法:只要屏幕上有任何两部分代码看上去相似,则一定有合并办法例子:if (!result.Contains("true")) { _repSFC.GrantAuthorityToRole(authority, role, false); } if (result.Contain ...
<div ms-controller='new_collage8'> <div id="head" class="pr tc bgcfefefe"> <div class="headbox h49 lh49"> <img class="pa left10 top15 h18 cp zi2 back" ...
分类:
其他好文 时间:
2017-08-10 11:53:32
阅读次数:
139
iOS 烟花撒花效果,图层渐变,图层倒影特效。CAEmitterLayer粒子发射器 上一节我写了一个关于视图图层的相关类,有关CALayer这个类的使用和一些使用方法,详细看这里,就是我们在处理视图的时候要对他的图层来进行改动,须要注意的几个地方,还有锚点的介绍,然后这篇主要说一个利用CALaye ...
分类:
移动开发 时间:
2017-08-10 11:52:41
阅读次数:
252
题目描述: 给你一个整数n. 从 1 到 n 按照下面的规则打印每个数: 如果这个数被3整除,打印fizz. 如果这个数被5整除,打印buzz. 如果这个数能同时被3和5整除,打印fizz buzz. 样例 比如 n = 15, 返回一个字符串数组: [ "1", "2", "fizz", "4", ...
分类:
其他好文 时间:
2017-08-10 11:51:18
阅读次数:
130
private bool CheckNumber(string number) { Regex regex = new Regex(@"^(-)?\d+(\.\d+)?$"); if (regex.IsMatch(number)) { return true; } else { return fal ...
分类:
其他好文 时间:
2017-08-10 11:41:16
阅读次数:
128
#include #include #include #include #include #include using namespace std; int main() {double a; cin>>a; printf("%0.12lf",a); return 0; } ...
分类:
其他好文 时间:
2017-08-10 10:23:22
阅读次数:
113