#/bin/bash
a=(9 84 51 0 345 1 2 34 1 0)
#自己定义一个数组
temp=
for((i=0;i<10;i++))
{
for((j=i;j<10;j++))
{
x=${a[$i]}
if test $x -ge ${a[$j]}
then
temp=${a[$i]}
a[$i]=${a[$j]}
a[$...
分类:
编程语言 时间:
2015-04-20 09:33:26
阅读次数:
144
#/bin/bash
a=(9 84 51 0 345 1 2 34 1 0)
#自己定义一个数组
temp=
for((i=0;i<10;i++))
{
for((j=i;j<10;j++))
{
x=${a[$i]}
if test $x -ge ${a[$j]}
then
temp=${a[$i]}
a[$i]=${a[$j]}
a[$...
分类:
编程语言 时间:
2015-04-20 09:27:06
阅读次数:
174
1.比较大小1.1比较整数if[$A-gt$B];thenecho"A>B"elseecho"A<B"fi或者if(($a>$b));thenecho"a>b"elseecho"a<b"fi-eq等于[$a-eq$b](($a==$b))-ne不等于[$a-ne$b](($a!=$b))-gt大于[$a-gt$b](($a>$b))-ge大于等于[$a-ge$b](($a>=$b))-lt小于[$a-lt$b](($a&l..
分类:
系统相关 时间:
2015-04-19 19:36:22
阅读次数:
248
直接上代码,不多说//在进程中去寻找当前APP的信息,判断是否在前台运行private boolean isAppOnForeground() {ActivityManager activityManager =(ActivityManager) getApplicationContext().ge...
分类:
移动开发 时间:
2015-04-19 10:04:46
阅读次数:
117
这段时间有个项目id频繁出现 id冲突的问题 一真找不到原因 后来想到了个办法 在新建取id时先把到到的id保存起来上代码 望大神指点下/// /// 到表中的最大id/// /// 字段名--必须是int型/// 表名/// 临时数据集/// 字段/// function TMainForm.Ge...
分类:
数据库 时间:
2015-04-18 11:26:57
阅读次数:
136
import java.lang.reflect.Field;
import java.lang.reflect.Method;
/**
* 解决ScrollView嵌套ViewPager,导致ViewPager不能滑动的问题
*/
public
class CustomScrollView extends ScrollView {
private Ge...
分类:
其他好文 时间:
2015-04-17 11:38:10
阅读次数:
109
Spring=ModelAndView
publicStringsubForm(Modelmodel,ServletRequestrequest){
request.getParameter("xxxx");
}Struts=ActionMapping
publicActionForwardlogin(ActionMappingmapping,ActionFormform,HttpServletRequestrequest,
HttpServletResponseresponse){
request.ge..
分类:
其他好文 时间:
2015-04-16 20:07:37
阅读次数:
160
http://www.uisdc.com/ ? http://hao.uisdc.com/# ? i,我是优设小编 55个超赞的收费响应式网站后台管理模板 http://www.uisdc.com/premium-responsive-admin-templates#...
分类:
其他好文 时间:
2015-04-16 12:41:44
阅读次数:
139
使用的系统是ubuntu,所以有大量apt-get命令,哈哈见谅安装git git-core新建一个git用户,这个用户的主目录会用来存放Git Repository。 这个用户名并非一定要叫git,可以任意指定,只不过git是比较常用的,一看就知道这个账户的作用修改下密码登陆sudo apt-ge...
分类:
其他好文 时间:
2015-04-15 23:01:52
阅读次数:
130
在解决方案中,右键某项目,属性——Web——服务器——选择IISExpressURL输入:http://localhost:8000/ 直接将8000更改为任何端口即可,最好不要占用系统端口,点击创建虚拟目录可以在C:\Users\hao\Documents\IISExpress\config\ap...
分类:
Web程序 时间:
2015-04-14 22:52:33
阅读次数:
6303