Hostapdhostapd 是一个用户态用于AP和认证服务器的守护进程。它实现了IEEE 802.11相关的接入管理,IEEE 802.1X/WPA/WPA2/EAP 认证, RADIUS客户端,EAP服务器和RADIUS 认证服务器。hostapd配置文件interface=ath16bridg...
分类:
其他好文 时间:
2014-07-26 00:28:36
阅读次数:
464
http://iosdevelopertips.com/user-interface/creating-circular-and-infinite-uiscrollviews.htmlhttps://github.com/darcyliu/SampleCode/tree/master/StreetS...
分类:
移动开发 时间:
2014-07-25 19:13:51
阅读次数:
252
定义:客户端不应该依赖它不需要的接口;类之间的依赖关系应建立在最小的接口之上。接口隔离原则英文全称为Interface Segregation Principle ,简称为ISP。个人理解:通俗的来说,接口不能臃肿庞大,而使根据具体需要尽量的细化。接口中的方法也要尽可能的少。接口是设计对外的一种契约...
分类:
其他好文 时间:
2014-07-25 19:06:02
阅读次数:
382
ActivityWindow、WindowManagerView、interface----ViewManagerLayoutInflaterComponentsActivity、Services、ContentProvider、Broadcast ReceiverActivity-------Ac...
分类:
移动开发 时间:
2014-07-25 13:50:31
阅读次数:
202
本文内容来自书上,不懂设计模式,只求混个眼熟。
三、抽象工厂模式
1. 动物管理系统的例子
public interface Animal{
public void eat();
}
public class Tiger implements Animal
{
public void eat(){
sysout.out.println("老虎会吃");
};
p...
分类:
其他好文 时间:
2014-07-25 11:15:01
阅读次数:
196
1 interface ViewController () 2 3 @property (weak, nonatomic) IBOutlet UITableView *tableView; 4 5 @end 6 7 @implementation ViewController 8 9 ...
分类:
其他好文 时间:
2014-07-25 02:24:44
阅读次数:
248
unit?u_des;
interface
uses
?SysUtils,Classes;
type
?TByte32?=?array[1..32]?of?Byte;
?TSData??=?array[0..63]?of?Byte;
?TBlock?=?array[0..7]?of?Byte;
?function??EnCryptStr(aStr...
分类:
其他好文 时间:
2014-07-25 00:05:54
阅读次数:
403
c++ 中.h 和 .cpp 根据java理解和区分...
分类:
编程语言 时间:
2014-07-24 23:18:23
阅读次数:
384
进入后台时,iOS给了我们10分钟的时间做一些事件处理。AppDelegate.h:1 #import 2 3 @interface AppDelegate : UIResponder 4 5 @property (assign, nonatomic) UIBackgroundTaskIdentif...
分类:
其他好文 时间:
2014-07-24 22:36:03
阅读次数:
179
捕获Java线程池执行任务抛出的异常Java中线程执行的任务接口java.lang.Runnable 要求不抛出Checked异常, public interface Runnable { public abstract void run(); } 那么如果 run() 方法中抛出了Runt...
分类:
编程语言 时间:
2014-07-24 21:57:42
阅读次数:
246