冒泡排序 冒泡排序是由从大到小的顺序排列 例如//Console.Write("请输入你们班的人数"); //int a = int.Parse(Console.ReadLine()); //int[] shuzu = new int[a];
分类:
其他 时间:
2016-03-13 17:23:53
收藏:
0 评论:
0 赞:
0 阅读:
197
WPF WebBrowser屏蔽弹出alert ,confirm ,prompt ,showModalDialog() ,window.open()添加Microsoft.mshtml.dll,然后写如下代码
分类:
Windows开发 时间:
2016-03-13 17:23:42
收藏:
0 评论:
0 赞:
0 阅读:
322
我之前一直因为viewpager+fragment时,所有页面的状态都会被自动保存 这次自己做了一个添加了5跟fragment的viewpager 测试时发现当从第一个切换到第四个页面时,再回到第一个页面,这个页面会被重新加载 每次都重新加载的话,显示效果不好,用户体验也不好 在网上看到了几种方法
分类:
移动平台 时间:
2016-03-13 17:23:32
收藏:
0 评论:
0 赞:
0 阅读:
317
Discrete.Differential.Geometry-An.Applied.Introduction(sig2013) 笔记
分类:
移动平台 时间:
2016-03-13 17:23:23
收藏:
0 评论:
0 赞:
0 阅读:
405
查询分: 普通查询(select 列,列 from 表名) 条件查询(where 列), 单条件_并列条件_或条件 模糊查询(where 列 like'内容%'), 统计查询(count(主键)/max(列)/min(列)/avg(列)/sum(列)), 各组之间用逗号隔开 排序查询(order
分类:
数据库技术 时间:
2016-03-13 17:23:12
收藏:
0 评论:
0 赞:
0 阅读:
236
HTTP is not just for serving up web pages. It is also a powerful platform for building APIs that expose services and data. HTTP is simple, flexible, a
分类:
Windows开发 时间:
2016-03-13 17:23:04
收藏:
0 评论:
0 赞:
0 阅读:
689
近期在改动一个检验计划分配的一个程序。上网查了一些资料,分别对QP01检验计划创建、改动QP02、删除物料等操作。分享一下。 一、QP01 BAPI BAPI_INSPECTIONPLAN_CREATE 二、BDC for QP02 REPORT ZQM_BDC_QP02. *********
分类:
Windows开发 时间:
2016-03-13 17:22:22
收藏:
0 评论:
0 赞:
0 阅读:
232
一、测试方法:Right-BICEP Right-结果是否正确? B-是否所有的边界条件都是正确的? I-能查一下反向关联吗? C-能用其他手段交叉检查一下结果吗? E-你是否可以强制错误条件发生? P-是否满足性能要求? 二、测试模块:定制打印的题目数 三、测试内容:负数(-100)、0、正数
分类:
其他 时间:
2016-03-13 17:22:12
收藏:
0 评论:
0 赞:
0 阅读:
207
你需要驾驶一辆汽车行驶S个单位的距离。最开始汽车上有P个单位的汽油,汽车每开行1个单位的距离需要消耗1个单位的汽油。如果汽车中途汽油耗尽,将无法继续行驶,因此也就无法到达终点。途中一共有N个加油站,第i个加油站距离起点的距离为Ai个单位距离,第i个加油站你最多可以给汽车加Bi个单位的汽油。假设汽车的
分类:
其他 时间:
2016-03-13 17:21:52
收藏:
0 评论:
0 赞:
0 阅读:
301
加快sql查询是非常重要的技巧,简单来说加快sql查询的方式有以下几种:一、索引的引用 1、索引一般可以加速数据的检索速度,加速表与表之间的链接,提高性能,所以在对海量数据进行处理时,考虑到信息量比较大,应该对表建立索引,包括在主键上建立聚簇索引,将聚合索引建立在日期刊上等。索引的优点有很多,但是对
分类:
数据库技术 时间:
2016-03-13 17:21:42
收藏:
0 评论:
0 赞:
0 阅读:
220
1、右键 项目名称 —— MyEclipse —— Add Spring Capabilities 2、选取 Copy checked Library contents to project folder 3、建立IService 与 Service 【Spring 同样是面向接口编程,因此需要引入
分类:
编程语言 时间:
2016-03-13 17:21:32
收藏:
0 评论:
0 赞:
0 阅读:
243
the canonical way to read one line of input with the read builtin is: 如: IFS=',' read -ra DEPS <<< ${dependencies} 转自: http://unix.stackexchange.com
分类:
其他 时间:
2016-03-13 17:21:22
收藏:
0 评论:
0 赞:
0 阅读:
914
本次编程相对上周工作量很大,我这个菜鸟颇受打击,很吃力,最终功能也没有完全实现,但有些收获。
分类:
其他 时间:
2016-03-13 17:21:02
收藏:
0 评论:
0 赞:
0 阅读:
262
代码规范:#include <iostream.h>#include <stdlib.h>#include <conio.h>int main(){ //初始化 int a,b,c; int num1,num2; int num; int chufa; i
分类:
其他 时间:
2016-03-13 17:20:53
收藏:
0 评论:
0 赞:
0 阅读:
270
AsyncTask封装,简化异步操作
下面来用一个实例来...
分类:
其他 时间:
2016-03-13 16:15:13
收藏:
0 评论:
0 赞:
0 阅读:
206
测试方法Right-BICEP: 测试计划: 1.Right:输出结果是否正确? 2.B :是否所有边界条件都是正确的? 3.P :是否满足性能要求? 4. :是否可以选择乘除法? 5. :是否可以选择真分数运算? 6. :是否
分类:
其他 时间:
2016-03-13 16:14:33
收藏:
0 评论:
0 赞:
0 阅读:
281
函数的调用 using System;using System.Collections.Generic;using System.Linq;using System.Text;using System.Threading.Tasks; namespace hanshu{ class Program
分类:
Windows开发 时间:
2016-03-13 16:14:12
收藏:
0 评论:
0 赞:
0 阅读:
279