myeclipse Android项目无法attach源码
myeclipse Android项目无法attach源码
jad反编译出来,总是有 throw new RuntimeException("Stub!");
根本没法看。源码也attach不上去,原来是myeclipse设置有问题。在window——preferrence——Android下,确认一下sdk路径,再apply一下...
分类:
移动开发 时间:
2015-04-23 00:02:53
阅读次数:
303
例子:
1. 常见用法。
char buf[512] = ;
sscanf("123456 ", "%s", buf);
printf("%s\n", buf);
结果为:123456
2. 取指定长度的字符串。如在下例中,取最大长度为4字节的字符串。
sscanf("123456 ", "%4s", buf);
printf("%s...
分类:
其他好文 时间:
2015-04-23 00:02:52
阅读次数:
194
skiing
时间限制:3000 ms | 内存限制:65535 KB
难度:5
描述Michael喜欢滑雪百这并不奇怪, 因为滑雪的确很刺激。可是为了获得速度,滑的区域必须向下倾斜,而且当你滑到坡底,你不得不再次走上坡或者等待升降机来载你。Michael想知道载一个区域中最长底滑坡。区域由一个二维数组给出。数组的每个数字代表点的高度。下面是一个例子
1 2 3 ...
分类:
其他好文 时间:
2015-04-23 00:01:52
阅读次数:
221
1、错误描述
ClientAbortException: java.net.SocketException: Software caused connection abort: socket write error
at org.apache.catalina.connector.OutputBuffer.realWriteBytes(OutputBuffer.java:407)
at o...
分类:
编程语言 时间:
2015-04-23 00:02:32
阅读次数:
295
Search to Navigate在Vim中快速定位到某处的另外方法就是搜索word,使用方法就是符号/后跟要搜索的word, 执行命令后会显示多个匹配项,我们可以使用n或N命令将光标移动到前一个或后一个匹配项上。结合删除等操作命令可以快速精确删除特定区域字符。...
分类:
系统相关 时间:
2015-04-23 00:01:25
阅读次数:
199
#include
#include
#include
#include
#include
using namespace std;
int main(){
string str;
set q;
char sss[1005];
while(gets(sss)){
str=sss;
q.clear();
if(str=="#") break;
int i;
for(i=0;...
分类:
其他好文 时间:
2015-04-23 00:01:31
阅读次数:
153
定义:将一个复杂对象的构造与它的表示分离,使同样的构建过程可以创建不同的表示,这样的设计模式被称为建造者模式。
(separate the construction of a complex object from its representation so that the same construction process can create different representation...
分类:
其他好文 时间:
2015-04-23 00:02:43
阅读次数:
165
1:如何利用startActivityForResult()传值
2:requestCode 请求码作用
3:resultCode 结果码作用
4:关于调用startActivityForResult后onActivityResult立刻响应,而返回当前页时onActivityResult不响应的问题的...
分类:
其他好文 时间:
2015-04-23 00:03:25
阅读次数:
195