; 感觉双休就想睡觉,这鬼天气,一直下雨。设置时间未完成,只是加了一个所谓的主界面; display
system time. press f1 to change the color displayed, press esc to return main
list. f3 exit; clear_...
分类:
其他好文 时间:
2014-05-27 03:09:58
阅读次数:
320
Brightnesssudo gedit /etc/default/grubfind this
line : GRUB_CMSLINE_LINUX_DEFAULT="quiet splash"change to:
GRUB_CMDLINE_LINUX_DEFAULT="quiet splash ac...
分类:
系统相关 时间:
2014-05-27 01:35:57
阅读次数:
296
The "." command is one of the most simple yet
powerful commands in Vim. Itrepeats the last change. For instance, suppose you
are editing an HTML filea...
分类:
其他好文 时间:
2014-05-23 22:52:50
阅读次数:
372
完全按照海涛哥剑指offer里边的递归思路来写的,基本一样,仅作学习验证,努力锻炼,努力学习!code如下:
//Change a BSTree to a sorted double linklist
struct BSTreeNode
{
int value;
BSTreeNode *left;
BSTreeNode *right;
}head;
//Create a node of...
分类:
其他好文 时间:
2014-05-22 10:23:27
阅读次数:
237
1 ALTER TABLE table_name CHANGE COLUMN old_col_name
new_col_name datatype; #改变table的列名以及列的类型
分类:
数据库 时间:
2014-05-19 07:58:45
阅读次数:
378
一 为了更清楚的看出2者区别,请看下表:
UNDO REDO
Record of
How to undo a change
How to reprodu...
分类:
数据库 时间:
2014-05-18 18:37:22
阅读次数:
328
方法
描述
bind()
向匹配元素附加一个或更多事件处理器
blur()
触发、或将函数绑定到指定元素的 blur 事件
change()
触发、或将函数绑定到指定元素的 change 事件
click()
触发、或将函数绑定到指定元素的 click 事件
dblclick()
触发、或将函数绑定到指定元素的 double click...
分类:
Web程序 时间:
2014-05-18 05:37:19
阅读次数:
359
我们都知道指针是用来操作内存空间的,我们可以简单的拿来改变某个变量的值如:我们定义一个int
a = 5;然后定义一个指针int *p;将change(&a);利用这个调用函数change();用函数int change(int *p){*p =
10;return 1;}输出结果会是:a = 10...
分类:
其他好文 时间:
2014-05-18 02:26:42
阅读次数:
247
package Demo;public class Money{ public static void
main(String args[]) { Money mon = new Money();
System.out.println(mon.change("124")); } /...
分类:
其他好文 时间:
2014-05-17 23:22:10
阅读次数:
412
You need to override onSaveInstanceState(Bundle
savedInstanceState) and write the application state values you want to change to
the Bundle parameter ...
分类:
移动开发 时间:
2014-05-17 14:49:13
阅读次数:
292