在c中const这个关键字,维基给出这样一句话
When applied in an object declaration,[b] it indicates that the object is a constant: its value does not change, unlike a variable. This basic use – to declare constants – has...
分类:
其他好文 时间:
2015-08-04 15:52:44
阅读次数:
124
在struts2中使用url传递中文到后台乱码
解决办法:
需要配置这样几样东西,问题就解决了:
(1)将MyEclipse编码格式设置成utf-8
(2)struts2.xml配置文件中加上这一行:
constant
name="struts.i18n.encoding"
value="utf-8"/>
(3)在JSP页面顶端的page中加上charset=UTF-8,如...
分类:
Web程序 时间:
2015-08-02 16:54:29
阅读次数:
152
Design a stack that supports push, pop, top, and retrieving the minimum element in constant time.push(x) -- Push element x onto stack.pop() -- Removes...
分类:
其他好文 时间:
2015-08-01 23:17:36
阅读次数:
108
Sort a linked list inO(nlogn) time using constant space complexity./** * Definition for singly-linked list. * public class ListNode { * int val; *...
分类:
其他好文 时间:
2015-08-01 18:42:38
阅读次数:
108
在做Android开发的时候,只要查看一些Android源码,不难发现,其中,声明常量都是如下格式:
private static final String TAG = "FragmentActivity";
声明为什么要添加static关键字呢?
之前是这么考虑问题的:定义一个类A,其中包含了用静态变量修饰的常量CONSTANT_A与直接用final修饰的常量CONSTANT_B
pub...
分类:
编程语言 时间:
2015-07-31 18:24:28
阅读次数:
168
来源:http://hellobug.github.io/blog/angularjs-providers/用AngularJS做项目,但凡用过什么service啊,factory啊,provider啊,开始的时候晕没晕?!晕没晕?!感觉干的事儿都差不多啊,到底用哪个啊?!别告诉我你们几个就是为了跟...
分类:
Web程序 时间:
2015-07-30 16:17:40
阅读次数:
119
一、通过SharedPreferences放到内存文件中。保存的代码示例: // 保存选中的社区ID,以便后续查询用 SharedPreferences sharepre = getSharedPreferences(Constant.SP...
分类:
其他好文 时间:
2015-07-30 12:55:17
阅读次数:
135
Design a stack that supports push, pop, top, and retrieving(检索) the minimum element in constant time.push(x) -- Push element x onto stack.pop() -- Rem...
分类:
其他好文 时间:
2015-07-29 00:39:03
阅读次数:
130
一句话: 它们Angular框架声明周期的各个阶段,常规约定各专注于特定功能,经过处理也可以互相替换1.功能细分简解configAngular module模块的加载阶段-应用在此时还没有启动runAngular应用是第一个被运行的方法,相当于其它语言中的main()方法factoryfactory...
分类:
其他好文 时间:
2015-07-27 22:30:14
阅读次数:
167
【AutoLayout动画】
对于storyboard每个约束,都可以像控件那样通过拖线的方式来建立和代码的连接。
约束是一个对象,通过这个对象的constant属性可以修改约束的点数。
在修改之后,通过在UIView的animateWithDuration::方法的block内调用[self.view layoutIfNeeded]方法可以实现动画效果,调用layoutIfNeeded...
分类:
其他好文 时间:
2015-07-26 20:59:36
阅读次数:
152