在你要刷新adapter的地方这样写 position是点击listView的行位置 当然在执行下面2行的代码前要改变数据内容 例如: if (orderList[pos].getStatus() == 0) { orderList[pos].setStatus(1); } else { orderList[p...
分类:
其他好文 时间:
2014-07-21 10:28:52
阅读次数:
174
在SELECT语句查询中可以使用CASE WHEN对查询出来的结果,进行一个类似于if else的判断。 ????具体的用法 ????1. ????SELECT a.website_id, b.customer_name, a.website_enddate, c.member_n...
分类:
数据库 时间:
2014-07-21 10:25:25
阅读次数:
253
超时代码:#include using namespace std;//写一个函数判断是否是素数bool isPrime(int num){int i=2;//coutnum)return true; else return false;}int main(){ int T; cin>>...
分类:
其他好文 时间:
2014-07-21 10:01:49
阅读次数:
246
直接使用JDBC一个非常普遍的问题就是动态SQL。使用参数值、参数本身和数据列都是动态SQL,通常是非常困难的。典型的解决办法就是用上一堆的IF-ELSE条件语句和一连串的字符串连接。对于这个问题,Ibatis提供了一套标准的相对比较清晰的方法来解决一个问题,这里有个简单的例子:上面的例子中,根据参...
分类:
数据库 时间:
2014-07-21 10:01:04
阅读次数:
285
一、基本算法2.二分查找void find(int l,int r){ if (l>r || a[l]>x || a[r]> 1; if (a[mid] == x){ if (mid a[mid]) find(mid+1, r); else find(l, mid-...
分类:
其他好文 时间:
2014-07-21 09:15:15
阅读次数:
227
写出以下shell脚本1 判定一个用参数指定的文件是否为可执行,如果不是,则改为可执行#!/bin/bash if [ -x $1 ]then echo "OK"else echo "chmod a+x"chmod a+x $1fi 2 用while和until循环,实现输出某年前9个月月历的效果 ...
分类:
其他好文 时间:
2014-07-21 08:19:28
阅读次数:
279
解: (define?(pascal?n)
??(define?(get?n?i)
????(cond?((<=?i?1)?1)
??????????((>=?i?n)?1)
??????????(else?(+?(get?(-?n?1)?(-?i?1))
??????????...
分类:
其他好文 时间:
2014-07-20 23:29:02
阅读次数:
363
VERILOG:case(a) 1'b0: begin end 1'b1: begin endendcaseif() begin endelse begin if() begin end else begin en...
分类:
其他好文 时间:
2014-07-20 21:34:35
阅读次数:
222
string colorstr = "#FF4D4D4D";string hex = colorstr.ToString().Replace("#", "");byte alpha;byte pos = 0;if (hex.Length == 8){ alpha = System.Convert.ToByte(hex.Substring(pos, 2), 16); pos = 2;}else{ a...
分类:
其他好文 时间:
2014-07-20 09:15:00
阅读次数:
345
__int64 CountOne(__int64 n)
{
__int64 count =0;
if (n ==0)
count =0;
else if (n >1&& n <10)
count =1;
else
{
__int64 highest = n;
__int64 bit =0;
...
分类:
其他好文 时间:
2014-07-19 23:27:20
阅读次数:
307