`
237253995
  • 浏览: 24055 次
  • 性别: Icon_minigender_1
  • 来自: 广州
社区版块
存档分类
最新评论
文章列表
google编码规范(android): https://github.com/futurice/android-best-practices
Android view lifecycle   What is View? View class represents the basic building block for user interface components. A View occupies a rectangular area on the screen and is responsible for drawing and event handling. View is the base class for widgets, which are used to create interactive UI co ...
遍历Map的四种方法 public static void main(String[] args) {   Map<String, String> map = new HashMap<String, String>();  map.put("1", "value1");  map.put("2", "value2");  map.put("3", "value3");    //第一种:普遍使用,二次取值  System.out.print ...
题目:  int func(unsigned int i){Unsigned int temp=iTemp=(temp & 0x55555555)+((temp & 0xaaaaaaaa)>>1);Temp=(temp & 0x33333333)+((temp & 0xccccccccc)>>2);Temp=(temp & 0x0f0f0f0f)+((temp & 0xf0f0f0f0>>4);
磁盘调度在多道程序设计的计算机系统中,各个进程可能会不断提出不同的对磁盘进行读/写操作的请求。由于有时候这些进程的发送请求的速度比磁盘响应的还要快,因此我们有必要为每个磁盘设备建立一个等待队列,常用的磁盘调度算法有以下四种: 先来先服务算法(FCFS), 最短寻道时间优先算法(SSTF), 扫描算法(SCAN), 循环扫描算法(CSCAN)   例:假定某磁盘共有200个柱面,编号为0-199,如果在为访问143号柱面的请求者服务后,当前正在为访问125号柱面的请求服务,同时有若干请求者在等待服务,它们每次要访问的柱面号为   86,147,91,177,94,150,102,
   相信绝大多数的人不会去用String类的intern方法,打开String类的源码发现这是一个本地方法,定义如下:    public native String intern();       文档告诉我们该方法返回一个字符串对象的内部化引用。众所周知:String类 ...
public static void main(String[] args) { String s1 = new StringBuilder("计算机").append("啊").toString(); System.out.println(s1.intern() == s1); String s2 = new StringBuilder("ja").append("va").toString(); System.out.println(s2.intern() == s2); }   这段代码在JDK ...
在程序的不同的地方创建多个scanner对象读取一整行信息,每次用完后都很自然得调用了close方法关掉,当第二个scanner对象调用nextLine时就会出现NoSuchElementException: No line found的异常。     public void close()关闭此扫描器。 如果此扫描器尚未关闭,并且其底层 readable 也实现 Closeable 接口,则该 readable 的 close 方法将被调用。System.in是InputStream的对象,并且关掉之后不能再打开

Android theme

android:theme="@android:style/Theme.Dialog" : Activity显示为对话框模式 android:theme="@android:style/Theme.NoTitleBar" : 不显示应用程序标题栏 android:theme="@android:style/Theme.NoTitleBar.Fullscreen" : 不显示应用程序标题栏,并全屏 android:theme="Theme.Light ": 背景为白色 android:theme=" ...
  在使用jquery.scrollLoading.js 时,静态请求本站本资源。在IIS7环境下出现页面无法加载。     查看浏览器报错,出现405错误。   百度之,得出解决办法: 来源:http://dwtedx.com/itshare_112.html       配置 新增 html扩展:     ,然后重启站点即可。    
<iframe src="test.html" id="main" width="700" height="300" frameborder="0" scrolling="auto"></iframe>     $("#main").load(function(){var mainheight = $(this).contents().find("body").height()+30;$(this).hei ...
<script type="text/javascript"> // 所有功能必须包含在 WeixinApi.ready 中进行 WeixinApi.ready(function(Api) { // 隐藏右上角popup菜单入口 //Api.hideOptionMenu(); // 隐藏浏览器下方的工具栏 //Api.hideToolbar(); // 分享的回调 ...
地址映射过程中,若在页面中发现所要访问的页面不再内存中,则产生缺页中断。当发生缺页中断时操作系统必须在内存选择一个页面将其移出内存,以便为即将调入的页面让出空间。而用来选择淘汰哪一页的规则叫做页面置换 ...
  SAX / DOM 解析在JAVA中已经学习,这里只对pull解析器方法进行描述      如下xml: Person.xml <?xml version="1.0" encoding="UTF-8"?> <persons> <person id="23"> <name>liming</name> <age>30</age> </person> <person id="20" ...
  SharedPreferences的四种操作模式: Context.MODE_PRIVATE Context.MODE_APPEND Context.MODE_WORLD_READABLE Context.MODE_WORLD_WRITEABLE   Context.MODE_PRIVATE:为默认操作模式,代表该文件是私有数据,只能被应用本身访问,在该模式下,写入的内容会覆盖原文件的内容 Context.MODE_APPEND:模式会检查文件是否存在,存在就往文件追加内容,否则就创建新文件. Context.MODE_WORLD_READABLE和Context.MO ...
Global site tag (gtag.js) - Google Analytics