码迷,mamicode.com
首页 >  
搜索关键字:super feature    ( 8657个结果
java类初始化
class SuperClass{ static{ System.out.println("super class init!"); } static int superInt = 1; static String superString = "supS...
分类:编程语言   时间:2014-05-23 04:35:31    阅读次数:253
Java几种常用的实现排序方法
import java.util.Random; public class NumberSort{ /** * 私有构造方法,禁止实例化 */ private NumberSort(){ super(); } /** * 冒泡排序 * 比较相邻的元素。如果第一个比第二个大,就叫唤他们两个位置。 * 对每一组相邻的元素作同样的工作,从开始的第一对到结束后的最后一对,这样剩下的...
分类:编程语言   时间:2014-05-23 02:13:51    阅读次数:364
SnakeGo : Scaling Screen on Stage II
昨晚把BaseScreen就敲好了, 也找到了屏幕放缩的最优和最简方式. 不多说, 看代码: public BaseScreen(final SnakeGo game) { super(new ScalingViewport(Scaling.fit, CommonConsts.Screen.WIDT...
分类:其他好文   时间:2014-05-22 14:52:32    阅读次数:206
添加菜单到fragment
1、在fragment的代码中 @Override public void onCreate(Bundle savedInstanceState) { // TODO Auto-generated method stub super.onCreate(save...
分类:其他好文   时间:2014-05-22 13:48:05    阅读次数:197
TOM猫
#import "CHViewController.h" @interface CHViewController () @end @implementation CHViewController - (void)viewDidLoad { [super viewDidLoad]; // Do any additional setup after loading the view,...
分类:其他好文   时间:2014-05-22 12:38:44    阅读次数:369
创建兼容android activity的OSGI bundle
创建兼容android activity的OSGI bundle...
分类:移动开发   时间:2014-05-22 12:20:00    阅读次数:410
Hadoop-2.2.0中文文档—— Common - 超级用户模拟别的用户
简介 此文档描述了一个超级用户如何在安全的方式下以另一用户的名义提交作业或访问hdfs。 Use Case 下一部分描述的的代码示例对此用户用例是可用的。 一个用户名为'super'的超级用户想要以另一用户joe的名义提交作业或访问hdfs。超级用户有kerberos证书但是用户joe并没有。任务要求以用户joe的角色运行并且namenode上的文件访问也需要由joe完成。需要用户...
分类:其他好文   时间:2014-05-22 10:40:41    阅读次数:255
Bash String Manipulation Examples – Length, Substring, Find and Replace--reference
In bash shell, when you use a dollar sign followed by a variable name, shell expands the variable with its value. This feature of shell is called para...
分类:其他好文   时间:2014-05-21 18:32:32    阅读次数:332
JAVA之银行系统1
实现银行系统的账目,增加金额,与减少金额。当支付金额小于实际金额时,返回假。当增加金额成功时,为真。publicclassAccount{ privatedoublebalance; publicdoublegetBalance(){ returnbalance; } publicAccount(doublebalance){ super(); this.balance=balance; } publicboo..
分类:编程语言   时间:2014-05-21 01:57:06    阅读次数:329
[2014.5.18][SuperPixel] 也看Greg.Mori.代码的配置与执行
SuperPixel最初由Xiaofeng Ren提出(ICCV 2003),但我在网络上尚未找到有关这个最初想法的源代码;比较容易获得的倒是Greg Mori(CVPR 2004,ICCV 2005)基于Xiaofeng Ren算法做的代码https://www.cs.sfu.ca/~mori/research/superpixels/.代码包分为32bit版和64bit版. 这个代码用到了C...
分类:其他好文   时间:2014-05-20 14:43:27    阅读次数:395
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!