码迷,mamicode.com
首页 >  
搜索关键字:temp    ( 7776个结果
C 语言 const 关键字
#include int main(void){int i = 1;int j = 100;const int * temp = &i;printf("%d\n",*temp);i = 2;printf("%d\n",*temp);temp = &j;printf("%d\n",*temp);ret...
分类:其他好文   时间:2014-05-26 23:11:42    阅读次数:330
监听EditText实时输入
//要监听的EditText对象private EditText mEditText;//添加监听事件mEditText.addTextChangedListener( new TextWatcher() { private CharSequence temp; private int star.....
分类:其他好文   时间:2014-05-26 20:32:14    阅读次数:220
冒泡排序
1 int[] arr = {1,4,2,5,7,3}; 2 int temp = 0; 3 //升序 4 for (int i = arr.length-1; i > 0; --i) { 5 for (int j = 0; j i; j--) {17 if(arr[...
分类:其他好文   时间:2014-05-26 15:37:21    阅读次数:266
mongo数据库的导入导出
http://www.iwangzheng.com/[root@a02]$show dbs;changhong_tv_cms 0.078GB[root@a02]$ mongodump -d changhong_tv_cms -o/temp/db_mongo.20140521.mongo/worksp...
分类:数据库   时间:2014-05-26 10:30:39    阅读次数:407
堆排序
#include#include#includeusing namespace std; //void MinHeapFixup(int a[], int i)//{// int j ,temp;// temp = a[i];// j = (i-1)/2;// while(j >= 0 && i !...
分类:其他好文   时间:2014-05-26 10:26:08    阅读次数:212
Selenium Webdriver 学习总结-Advanced Usage-Cookie、Profile(七)
1、webdriver如何处理profile 当我们初始化Firefox WebDriver时,可以使用一个已存在的Profile或一个新的Profile,WebDriver每次使用前都会复制一份(win7 默认存放路径C:\Users\ADMINI~1\AppData\Local\Temp\anonymous5354649999399361803webdriver-profile),如果没有指定firefox profile,webdriver会创建一个空的Profile并使用它,所以我们在每次webd...
分类:Web程序   时间:2014-05-26 06:14:22    阅读次数:392
成绩的等级输出
输入一个百分制的成绩t后,按下式输出它的等级。等级为:90~100为A,80~89为B,70~79为C,60~69为D,0~59为E。样例输入98样例输出A#include"stdio.h"int main(){ char grade; double score; int temp...
分类:其他好文   时间:2014-05-26 00:27:15    阅读次数:225
tomcat目录
1. Tomcat目录结构 :l Bin下的文件是启动用的,一般用到的l Conf是配置文件的,可以配置端口8080什么的;l Lib是库文件,里面有一些jia包l Logs是日志文件,里面包含一些日子信息l Temp是临时文件l Webapps是项目应用文件,所有的项目都会被存进来经过编译后的.....
分类:其他好文   时间:2014-05-25 15:32:15    阅读次数:227
php -- 文件读写
-----024-file.php ----- 1 2 3 4 5 文件处理 6 7 8 文件处理 9 10 数组14 $str_zzz = file_get_contents($f_zzz); // 文件 => 字符串15 $arr_temp = ex...
分类:Web程序   时间:2014-05-25 03:02:16    阅读次数:374
数据库一列多行转一行多列
如题: select max(case when name='1' then [temp] else null end) as temp1 , max(case when name='2' then [temp] else null end) as temp2,  max(case when name='3' then [temp] else null end) as...
分类:数据库   时间:2014-05-23 02:37:04    阅读次数:734
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!