由于上篇文章总结的不是很详细,有很多方面并未涉及到shell各个方面,所以发表此文章对shell做了更全面的总结:文章版权:http://www.cnblogs.com/linux-super-meng/环境变量路径:[root@localhost
~]# set //查看到的是局部变量和全局变量2...
分类:
系统相关 时间:
2014-05-30 09:04:30
阅读次数:
500
一、Java基本知识1.vamei的Java快速教程2.简单登录界面3.main函数中String[]args的理解4.super和this的区别5.正则表达式(待完善)二、菜鸟的安卓笔记(待完善)1.2.……
分类:
编程语言 时间:
2014-05-28 15:30:57
阅读次数:
220
public class MyContextDialog extends Dialog {
public MyContextDialog(Context context) { super(context); } public
MyContextDialog(Conte...
分类:
其他好文 时间:
2014-05-28 09:19:05
阅读次数:
356
public class MainActivity extends Activity
{ private Spinner spinner=null; protected void onCreate(Bundle
savedInstanceState) {super.onCreate(savedIns...
分类:
其他好文 时间:
2014-05-28 00:35:18
阅读次数:
234
在使用AutoLayout后,想要使用代码控制ScrollView的contentSize,应该在[super
viewDidAppear:animated]之后进行。http://willsbor-blog.logdown.com/posts/179101-ios-autolayout-at-sc...
分类:
其他好文 时间:
2014-05-26 23:45:38
阅读次数:
278
SUPER可调用父类的构造方法,但要注意默认调用和参数调用。同时,在继承类时,可以用SUPER调用其它非构造方法哟。class
Test extends Object{ public Test(){ System.out.println("Test1 First thing");...
分类:
编程语言 时间:
2014-05-26 18:50:48
阅读次数:
325
public ImageButton(Context context, AttributeSet
attrs, int defStyle) { super(context, attrs, defStyle); setFocusable(true); }
在...
分类:
移动开发 时间:
2014-05-25 23:24:31
阅读次数:
393
class SuperClass{ static{ System.out.println("super
class init!"); } static int superInt = 1; static String superString = "supS...
分类:
编程语言 时间:
2014-05-23 04:35:31
阅读次数:
253
import java.util.Random;
public class NumberSort{
/**
* 私有构造方法,禁止实例化
*/
private NumberSort(){
super();
}
/**
* 冒泡排序
* 比较相邻的元素。如果第一个比第二个大,就叫唤他们两个位置。
* 对每一组相邻的元素作同样的工作,从开始的第一对到结束后的最后一对,这样剩下的...
分类:
编程语言 时间:
2014-05-23 02:13:51
阅读次数:
364
昨晚把BaseScreen就敲好了, 也找到了屏幕放缩的最优和最简方式. 不多说, 看代码:
public BaseScreen(final SnakeGo game) { super(new ScalingViewport(Scaling.fit,
CommonConsts.Screen.WIDT...
分类:
其他好文 时间:
2014-05-22 14:52:32
阅读次数:
206