自定义博客皮肤VIP专享

*博客头图:

格式为PNG、JPG,宽度*高度大于1920*100像素,不超过2MB,主视觉建议放在右侧,请参照线上博客头图

请上传大于1920*100像素的图片!

博客底图:

图片格式为PNG、JPG,不超过1MB,可上下左右平铺至整个背景

栏目图:

图片格式为PNG、JPG,图片宽度*高度为300*38像素,不超过0.5MB

主标题颜色:

RGB颜色,例如:#AFAFAF

Hover:

RGB颜色,例如:#AFAFAF

副标题颜色:

RGB颜色,例如:#AFAFAF

自定义博客皮肤

-+
  • 博客(8)
  • 收藏
  • 关注

转载 IntegerCache ByteCache CharacterCache LongCache ShortCache

new Integer(1) 与 Integer.valueOf(1) 的区别 使用Integer.valueOf(1)可以使用系统缓存,既减少可能的内存占用,也省去了频繁创建对象的开销。 public static Integer valueOf(int i) { assert ...

2019-02-12 21:05:00 196

转载 ReentrantLock重入锁

主要介绍ReentrantLock两种锁的加锁和释放锁的具体过程。 java.util.concurrent.lock.ReentrantLock,Java SE 5.0引入 使用简单示例 代码块 Plain Text class X { private final Reen...

2019-02-12 21:04:00 82

转载 phalcon save流程

phalcon官方文档是这么写的 Operation Name Can stop operation? Explanation Inserting/Updating ...

2015-11-19 19:48:00 233

转载 leetcode-Evaluate Reverse Polish Notation

Evaluate the value of an arithmetic expression inReverse Polish Notation. Valid operators are+,-,*,/. Each operand may be an integer or ano...

2015-11-16 20:53:00 84

转载 [leetcode]Consecutive Numbers

set @t1=0; sql中在select中赋值 @t1:= 1 sql中条件判断 case when 条件 then 结果1 else 结果2 end 例如:case when @tp=Num then @t1+1 else 1 end 或者 IF...

2015-11-16 20:53:00 80

转载 [初学web]phalcon框架下通过ajax更改select表单的选项

最后效果如下: 在更改city选项时候,触发自动更改District的选项 代码如下: //AddressController.php /** *Editsaaddres * *@paramstring$uid */ publi...

2015-11-16 20:53:00 152

转载 phalcon两种create方法的区别

今天又碰到phalcon的一个坑了 phalcon版本2.0.8 Model类create方法,代码示例有两种方式 //Creatinganewrobot $robot=newRobots(); $robot->type='mechanical'; $robot-&...

2015-11-16 20:46:00 470

转载 date周天返回0

今天才知道php和shell中,date取时间是周几的话,如果周天,那返回的是0!!!估计其他语言也一样吧,一直以为是7。。。醉了~ 转载于:https://my.oschina.net/...

2014-09-26 19:08:00 201

空空如也

空空如也

TA创建的收藏夹 TA关注的收藏夹

TA关注的人

提示
确定要删除当前文章?
取消 删除