There are no interfaces on which a capture can be done.今天启动了Wireshark但是提示→There are no interfaces on which a capture can be done.右击→以管理员身份运行Ok
分类:
其他好文 时间:
2015-06-04 15:12:11
阅读次数:
117
写过c#之后,觉得c#里的lambda表达式和delegate配合使用,这样的机制用起来非常爽。c++11也有了lambda表达式,形式上有细小的差异。形式如下: c#:(input parameters) => {statement;} c++:[capture list](paramet...
分类:
编程语言 时间:
2015-06-02 21:32:43
阅读次数:
118
Given a 2D board containing 'X' and 'O', capture all regions surrounded by 'X'.A region is captured by flipping all 'O's into 'X's in that surrounded ...
分类:
编程语言 时间:
2015-06-01 18:30:54
阅读次数:
168
lamda表达式是C++11中的新特征,说白了就是匿名函数。lambda表达式的具体形式如下:[capture](parameters)->return-type{body}其中, capture是需要用到的外部变量, parameters是函数参数,return-type是返回的类型(可省略).....
分类:
编程语言 时间:
2015-05-31 15:15:39
阅读次数:
163
备忘录模式又叫做快照模式(Snapshot Pattern)或Token模式,是对象的行为模式。 备忘录对象是一个用来存储另外一个对象内部状态的快照的对象。备忘录模式的用意是在不破坏封装的条件下,将一个对象的状态捕捉(Capture)住,并外部化,存储起来,从而可以在将来合适的时候把这个对象还原.....
分类:
其他好文 时间:
2015-05-30 17:57:54
阅读次数:
111
UseWiresharktocaptureloopbacktrafficwithoutaloopbackadapter If you’ve ever usedWiresharkfor debugging applications you may have noticed that it only ....
分类:
其他好文 时间:
2015-05-27 15:26:57
阅读次数:
365
题目:Given a 2D board containing'X'and'O', capture all regions surrounded by'X'.A region is captured by flipping all'O's into'X's in that surrounded reg...
分类:
其他好文 时间:
2015-05-26 12:06:37
阅读次数:
131
在上文配置好WDS、MDT控制台后,接下来我们就可以开始我们后续的分目录导入OS映像、各系统版本驱动、软件、补丁包(针对补丁包需要补充的是,之前在MDT2012中导入后是可以通过控制台更新后部署到客户端上的,但是在MDT2013上如果单独添加补丁包后部署总是报错,具体根源本人还..
分类:
其他好文 时间:
2015-05-25 20:45:57
阅读次数:
1276
API 21中将原来的camera API弃用转而推荐使用新增的camera2 API,这是一个大的动作,因为新API换了架构,让开发者用起来更难了。
先来看看camera2包架构示意图:
这里引用了管道的概念将安卓设备和摄像头之间联通起来,系统向摄像头发送Capture请求,而摄像头会返回CameraMetadata。这一切建立在一个叫作CameraCaptureSession的会话中。下...
分类:
移动开发 时间:
2015-05-24 15:47:29
阅读次数:
226
Given a 2D board containing 'X' and 'O',
capture all regions surrounded by 'X'.
A region is captured by flipping all 'O's into 'X's
in that surrounded region.
For example,
X X X X
X O O X...
分类:
其他好文 时间:
2015-05-24 13:03:25
阅读次数:
166