java运行时,在内存里分四个部分。栈,堆,数据区和代码区。。举个例子String str=new String("AAA");str就放在栈里,字符串"AAA"放在堆里。所有的方法代码都放在了代码区。 public class A{public void show(){System.out.pri ...
分类:
其他好文 时间:
2016-06-09 23:45:03
阅读次数:
459
Android反编译调试源码1. 反编译得到源码直接在windows 命令行下输入命令java -jar apktool_2.0.0.jar d -d 小米运动_1.4.641_1058.apk -o out,此处必须使用-d参数,这样反编译出来的代码后缀才是java,只有java文件才能被ecli... ...
分类:
移动开发 时间:
2016-06-09 12:16:03
阅读次数:
306
Problem:I have the MB account and the engineer confirmed the account can be applied to MB SD Connect C4 clone multiplexer. I need to carry out online ...
分类:
其他好文 时间:
2016-06-08 15:20:13
阅读次数:
163
overridePendingTransition(enterAnim, exitAnim); 要整个应用改切换方式的话,那就用style控制吧 1、在res文件夹创建anim文件夹 2、添加以下文件: slide_left_in.xml 从左边进来 slide_left_out.xml 从左边出去 ...
分类:
移动开发 时间:
2016-06-08 15:19:50
阅读次数:
267
1、创建c文件 touch demo.c 2、编辑c代码 3、编译(预编译、检查语法、编译)、链接 3.1、指令:cc -c demo.c 正常情况下,会生成一个demo.o的二进制文件(即:目标文件) 3.2、指令:cc demo.o 给demo.o添加启动代码并进行链接,生成可执行文件a.out ...
分类:
其他好文 时间:
2016-06-08 10:42:28
阅读次数:
177
Java开发常用英语单词表 第一章: public['p?blik] 公共的,公用的 static['stætik] 静的;静态的;静止的 void:[v?id] 空的 main:[mein] 主要的 重要的 class:[klɑ:s] 类 system:['sist?m] 系统 方法 out:[a ...
分类:
编程语言 时间:
2016-06-08 09:09:09
阅读次数:
365
http://blog.csdn.net/myarrow/article/details/8484113 0. 基本概念 一个【传输】(控制、批量、中断、等时):由多个【事务】组成; 一个【事务】(IN、OUT、SETUP):由一多个【Packet】组成。 USB数据在【主机软件】与【USB设备特定 ...
分类:
其他好文 时间:
2016-06-08 00:03:09
阅读次数:
597
javac my.java//编译java my//执行public class my{ public static void main(String args[]){ System.out.println("my name"); family f=new family(); f.info(); } ...
分类:
编程语言 时间:
2016-06-07 22:04:34
阅读次数:
139
At the beginning of every day, the first person who signs in the computer room will unlock the door, and the last one who signs out will lock the door ...
分类:
其他好文 时间:
2016-06-07 20:52:22
阅读次数:
398
div id="cnblogs_post_body"> JSTL 核心标签库标签共有13个,功能上分为4类: 1.表达式控制标签:out、set、remove、catch 2.流程控制标签:if、choose、when、otherwise 3.循环标签:forEach、forTokens 4.URL ...
分类:
Web程序 时间:
2016-06-07 20:50:34
阅读次数:
360