原文:https://jblevins.org/log/clipboard I use a clipboard manager called Copied that syncs previously copied text across all my devices. Short of having ...
分类:
系统相关 时间:
2018-10-23 12:06:26
阅读次数:
198
一、什么是观察者模式 定义 “观察者模式是软件设计模式的一种。在此种模式中,一个目标对象管理所有相依于它的观察者对象,并且在它本身的状态改变时主动发出通知。这通常透过呼叫各观察者所提供的方法来实现。此种模式通常被用来实时事件处理系统。” Wikipedia 作用 当抽象个体有两个互相依赖的层面时。封 ...
分类:
其他好文 时间:
2018-10-22 15:41:26
阅读次数:
179
<img src="https://timgsa.baidu.com/timg?image&quality=80&size=b9999_10000&sec=1540029251329&di=0081420d2668daf49d1fbaf2d059512d&imgtype=0&src=http%3A%... ...
分类:
其他好文 时间:
2018-10-20 16:28:19
阅读次数:
151
安装好TensorFlow之后,开一个python环境,就可以开始运行和使用TensorFlow了。 先给一个实例, #先导入TensorFlowimport tensorflow as tf # Create TensorFlow object called hello_constanthello ...
分类:
其他好文 时间:
2018-10-19 21:58:12
阅读次数:
252
class inheritance lets you derive new classes from old ones, inheriting its properties of the old class, called the base class With inheritance, you c ...
分类:
其他好文 时间:
2018-10-19 00:23:21
阅读次数:
133
原题 "题面" Solution ~~我是不会告诉你我一开始写了一个二分答案+rand的算法的。。。~~ 这样子你可以获得80分的好成绩!!! ...
分类:
其他好文 时间:
2018-10-18 01:18:43
阅读次数:
158
10.1 引言 信号是软件中断,很多比较重要地应用程序都需处理信号。信号提供了一种处理异常事件地方法,例如,终端用户键入中断键,则会通过信号机制停止一个程序,或及早终止管道中的下一个程序。 本章先对信号机制进行综述,并说明每种信号的一般用法。然后分析早期实现的问题。在分析存在的问题之后再说明解决这些 ...
分类:
其他好文 时间:
2018-10-17 11:06:30
阅读次数:
122
写在前面: 在目前的前端分开中,我们对于异步方法的使用越来越频繁,那么如果处理异步方法的返回结果,如果优雅的进行异步处理对于一个合格的前端开发者而言就显得尤为重要,其中在面试中被问道最多的就是对Promise方法的掌握情况,本章将和大家一起分析和完成一个Promise方法,希望对你的学习有一定的帮助 ...
分类:
其他好文 时间:
2018-10-15 16:25:18
阅读次数:
108
Handler是消息机制的面板类,我们通过Handler.send或者post消息然后在handleMessage()中去处理消息. 发送消息 public final boolean sendMessage(Message msg) { return sendMessageDelayed(msg, ...
分类:
其他好文 时间:
2018-10-14 23:34:10
阅读次数:
216
Description The branch of mathematics called number theory is about properties of numbers. One of the areas that has captured the interest of number t ...
分类:
其他好文 时间:
2018-10-10 20:11:26
阅读次数:
175