一、实现方法1、继承Thread类2、实现Runnable接口(一)继承Thread类对于直接继承Thread的类来说,代码大致框架是:class 类名 extends Thread{方法1;方法2;…public void run(){// other code…}属性1;属性2;… }先看一个错...
分类:
编程语言 时间:
2014-09-02 12:17:54
阅读次数:
168
Take a look at Task Manager on the machine where your TFS Repository lives. We have this problem whenever its memory utilization is greater than 95%.h...
分类:
其他好文 时间:
2014-09-02 12:16:24
阅读次数:
388
使用Ctrl+Shift+F自动格式化代码的时候,有时候折行太多反而让代码看起来更乱,不容易阅读。解决办法:Window-->Preferences-->Java-->Code Style-->Formatter-->Edit-->Line Wrapping-->Maximum line width...
分类:
系统相关 时间:
2014-09-02 12:01:04
阅读次数:
318
1.选择器(1)通配符:$("input[id^='code']");//id属性以code开始的所有input标签$("input[id$='code']");//id属性以code结束的所有input标签$("input[id*='code']");//id属性包含code的所有input标签(...
分类:
Web程序 时间:
2014-09-02 12:00:24
阅读次数:
178
Top 6 Refactoring Patterns to Help You Score 80% in Code QualityPosted byAjitesh Kumar /InCode Review,Software Quality /January 31, 2014Have done seve...
分类:
其他好文 时间:
2014-09-02 10:25:24
阅读次数:
363
Posted byAjitesh Kumar /InFreshers,Software Quality /February 1, 2014Following is one very popular image which has been used to represent time and aga...
分类:
其他好文 时间:
2014-09-02 10:23:34
阅读次数:
278
Debugging Techniques
内核debug的挑战:
Kernel programming brings its own, unique debugging challenges. Kernel code can not be easily executed under a debugger, nor can it be eas...
分类:
其他好文 时间:
2014-09-02 00:23:13
阅读次数:
476
1、所需要的工具1)apktool,功能:反编译出apk所需要的资源文件和布局设置文件等,下载地址:https://code.google.com/p/android-apktool/downloads/list需要下载apktool1.5.2.tar.bz2 和apktool-install-linux-r05-ibot.tar.bz2 这两个文件,并把解压后的文件放在同一个文件夹中。2)dex...
分类:
移动开发 时间:
2014-09-01 22:52:33
阅读次数:
364
LeetCode: Gray CodeThe gray code is a binary numeral system where two successive values differ in only one bit.Given a non-negative integer n represen...
分类:
其他好文 时间:
2014-09-01 22:31:13
阅读次数:
289
看懂题就是水题。。。code#include #include using namespace std;int a[110], n, l, r, ans;int main(){ cin >> n; for (int i = 0; i > a[i]; r = n - 1; sort (a, a + n...
分类:
其他好文 时间:
2014-09-01 22:20:38
阅读次数:
207