上一页 1 ··· 22 23 24 25 26 27 28 29 30 ··· 329 下一页
摘要: 界面如下: 问题1:点击“解绑广播接收器“后再次点击”解绑广播接收器“后,程序崩溃,log信息如下:08-04 05:04:35.420: E/AndroidRuntime(5521): FATAL EXCEPTION: main 08-04 05:04:35.420: E/AndroidRuntime(5521): java.lang.IllegalArgumentException: Receiver not registered: com.jinhoward.broadcast.receiver.SecondReceiver@40cfec98 08-04 05:04:35.420: E. 阅读全文
posted @ 2013-08-04 22:03 jlins 阅读(4302) 评论(0) 推荐(1) 编辑
摘要: Android中Button控件应该算作是比较简单的控件,然而,它的使用频率却是非常的高,今天,我在这里总结了三种常用的点击Button实现其功能的方法。 1.很多时候,我们在用到Button控件时,往往都是“一次性”使用,这时,为了方便起见,我们一般采用的是匿名内部类的方法,形如这样:button1.setOnClickListener(new OnClickListener() { @Override public void onClick(View v) { // TODO Auto-generated method stub System.out.p... 阅读全文
posted @ 2013-08-04 22:01 jlins 阅读(402) 评论(0) 推荐(0) 编辑
摘要: 依据前文伏击战场景手稿, 用Tile Studio"草草"制作出该场景的地图:生成的C源码:#ifndef _open_war_1Gfx_c#define _open_war_1Gfx_c#ifndef _GFX_BITMAP_DATA#define _GFX_BITMAP_DATA/* structure with bitmap data */typedef struct GFX_BITMAP_DATA{ char * BitmapIdentifier; int BitmapWidth; int BitmapHeight; int TileWidth; int TileH 阅读全文
posted @ 2013-08-04 21:59 jlins 阅读(410) 评论(0) 推荐(0) 编辑
摘要: 一:目的累计电脑日使用时间,超过8小时候提醒:请注意休息!二:要点三:实现四:源代码#include LRESULT CALLBACK WinProc(HWND,UINT,WPARAM,LPARAM);void auto_run();UINT second,minute,hour,day,month;int font_size,window_width;DWORD dw; //打杂的int WINAPI WinMain(HINSTANCE hInstance,HINSTANCE hPrevInstance,LPSTR lpCmdLine,int nShowCmd){ auto_run();.. 阅读全文
posted @ 2013-08-04 21:57 jlins 阅读(271) 评论(0) 推荐(0) 编辑
摘要: /* * query.cpp * * Created on: 2013年8月4日 * Author: Administrator */#include using namespace std;class Person{ string name; int age; string salary;public: Person(string name , int age , string salary):name(name),age(age),salary(salary){ } friend bool operator> name; Person* p = binarysearch1(pe... 阅读全文
posted @ 2013-08-04 21:55 jlins 阅读(268) 评论(0) 推荐(0) 编辑
摘要: TreeYou are to determine the value of the leaf node in a given binary tree that is the terminal node of a path of least value from the root of the binary tree to any leaf. The value of a path is the sum of values of nodes along that path.InputThe input file will contain a description of the binary . 阅读全文
posted @ 2013-08-04 21:53 jlins 阅读(338) 评论(0) 推荐(0) 编辑
摘要: 最近系统中使用zookeeper支持三个功能:全量/增量索引的消息通知;搜索活跃节点检查;分布式锁做索引切换同步。线上服务对稳定性要求较高,包括各种异常情况,如网络中断导致连接断开,系统load过高导致zk 超时等。从使用角度,做了几个测试,总结如下: 1. zk内部两个后台线程:心跳线程(SendThread),时间处理线程(EventThread),均为单线程,且互相独立。所以eventthread堵塞,不会导致心跳超时;另外由于event thread单线程,如果在process过程中堵塞,其他事件即使发生了,也只会放到本地队列中,暂时不会执行。2. 如果client与zkserver链 阅读全文
posted @ 2013-08-04 21:51 jlins 阅读(1003) 评论(0) 推荐(0) 编辑
摘要: Burning BridgesTime Limit: 5 Seconds Memory Limit: 32768 KB Ferry Kingdom is a nice little country located on N islands that are connected by M bridges. All bridges are very beautiful and are loved by everyone in the kingdom. Of course, the system of bridges is designed in such a way that one can g. 阅读全文
posted @ 2013-08-04 21:48 jlins 阅读(576) 评论(0) 推荐(0) 编辑
摘要: 最近再做一个项目需要用到xml的解析。今天查了一些资料自己做了一个小demo。纯OC没有界面。。在IOS平台上进行XML文档的解析有很多种方法,在SDK里面有自带的解析方法,但是大多情况下都倾向于用第三方的库,原因是解析效率更高、使用上更方便,关于IOS平台各种解析XML库的优缺点分析,可以看下这篇文章:http://www.raywenderlich.com/553/how-to-chose-the-best-xml-parser-for-your-iphone-project这里主要介绍一下由Google提供的一种在IOS平台上进行XML解析的开源库GDataXML,可以到http://c 阅读全文
posted @ 2013-08-04 21:47 jlins 阅读(5373) 评论(0) 推荐(0) 编辑
摘要: 配置在菜单中选择Edit.Preferences.代码自动完成 更改tab代表的空格数 括号自动关闭和语法检查interactive shell 中文支持 缩写点击菜单View.Tabs & Sidebars.ToolBox,右侧出现Toolbox. 选中python,右击,Add.New Snippet,注意要选中下面第二个复选框。 你也可以在编辑器中先写好代码,选中,然后拖到Toolbox对应的位置,然后再修改Properties。 新增缩写可以参考已经有的,在func上右击,选择Properties,可以看到代码。 点击右边的小三角形,可以看到一些特殊... 阅读全文
posted @ 2013-08-04 21:44 jlins 阅读(3047) 评论(0) 推荐(0) 编辑
上一页 1 ··· 22 23 24 25 26 27 28 29 30 ··· 329 下一页