1.只新建用户的操作mysql -u root -p密码mysql> insert into mysql.user(Host,User,Password) values(‘localhost’,'czc’,password('root'));mysql>flush privileges;mysql>...
分类:
数据库 时间:
2014-09-04 16:24:39
阅读次数:
278
create table tb(姓名 varchar(10),课程 varchar(10),分数 int)insert into tb values('张三','语文',74)insert into tb values('张三','数学',83)insert into tb values('张三',...
分类:
数据库 时间:
2014-09-04 16:16:39
阅读次数:
318
在res目录下建立不同名称的values文件来调用不同的语言包
Values文件汇总如下:
中文(中国):values-zh-rCN中文(台湾):values-zh-rTW
中文(香港):values-zh-rHK
英语(美国):values-en-rUS
英语(英国):values-en-rGB
英文(澳大利亚):values-en-rAU
英文(加拿大):values-en-rC...
分类:
移动开发 时间:
2014-09-04 14:59:49
阅读次数:
199
题目地址:UVa 1152
先枚举A集合与B集合的和,存起来,然后再枚举C集合与D集合的和,看与存起来的值有多少个是互为相反数的。水题。找存起来的值时可以用二分找。
代码如下:
#include
#include
#include
#include
#include
#include
#include
#include
#include
#include
#include...
分类:
其他好文 时间:
2014-09-03 21:22:17
阅读次数:
324
Given a binary tree, return the bottom-up level order traversal of its nodes' values. (ie, from left to right, level by level from leaf to root).For e...
分类:
其他好文 时间:
2014-09-03 21:13:57
阅读次数:
142
http://www.gamedev.net/topic/578866-d3d10-how-to-increase-maxcount-of-sv_clipdistance/ The D3D#_CLIP_OR_CULL_DISTANCE_* values are #defines in the d3d...
分类:
其他好文 时间:
2014-09-03 14:56:56
阅读次数:
175
步骤:
1.在values文件夹下的strings.xml文件里添加颜色:比如
#ccc
2.如果你直接这样写:
tv.setTextColor(R.color.ccc);
理论上是不行的,不过我发现有时行,有时不行。
正确的写法应该是:
tv.setTextColor(this.getResources().getColor(R.color.ccc));ok!
所以在java代码...
分类:
移动开发 时间:
2014-09-03 13:10:46
阅读次数:
164
INSERT INTO configuration VALUES (NULL, 'Home Title', 'HOME_TITLE', 'Home Title 后台-基本设置里面修改', '', '1', '1', NULL, '0001-01-01 00:00:00', NULL, NULL);I...
分类:
其他好文 时间:
2014-09-03 13:00:06
阅读次数:
191
1.获取url中controller和action第一种: 获取controller名称:ViewContext.RouteData.Values["controller"] 获取action名称:ViewContext.RouteData.Values["action"]第二种: ViewCont...
分类:
其他好文 时间:
2014-09-03 12:44:06
阅读次数:
172
问题描述
Given a binary tree, return the postorder traversal of its nodes' values.
For example:
Given binary tree {1,#,2,3},
1
2
/
3
return [3,2,1].
Note: Recur...
分类:
其他好文 时间:
2014-09-02 21:23:55
阅读次数:
317