Vue2 源码漫游(一)

Vue2 源码漫游(一)

描述:

Vue框架中的基本原理可能大家都基本了解了,但是还没有漫游一下源码。
所以,觉得还是有必要跑一下。
由于是代码漫游,所以大部分为关键性代码,以主线路和主要分支的代码为主,大部分理解都写在代码注释中。

一、代码主线

文件结构1-->4,代码执行顺序4-->1

clipboard.png

1.platforms/web/entry-runtime.js/index.js

web不同平台入口;

/* @flow */import Vue from './runtime/index'export default Vue

2.runtime/index.js

为Vue配置一些属性方法

/* @flow */import Vue from 'core/index'
import config from 'core/config'
import { extend, noop } from 'shared/util'
import { mountComponent } from 'core/instance/lifecycle'
import { devtools, inBrowser, isChrome } from 'core/util/index'import {query,mustUseProp,isReservedTag,isReservedAttr,getTagNamespace,isUnknownElement
} from 'web/util/index'import { patch } from './patch'
import platformDirectives from './directives/index'
import platformComponents from './components/index'// install platform specific utils
Vue.config.mustUseProp = mustUseProp
Vue.config.isReservedTag = isReservedTag
Vue.config.isReservedAttr = isReservedAttr
Vue.config.getTagNamespace = getTagNamespace
Vue.config.isUnknownElement = isUnknownElement// install platform runtime directives & components
extend(Vue.options.directives, platformDirectives)
extend(Vue.options.components, platformComponents)// install platform patch function
Vue.prototype.__patch__ = inBrowser ? patch : noop// public mount method
Vue.prototype.$mount = function (el?: string | Element,hydrating?: boolean
): Component {el = el && inBrowser ? query(el) : undefinedreturn mountComponent(this, el, hydrating)
}// devtools global hook
/* istanbul ignore next */
Vue.nextTick(() => {if (config.devtools) {if (devtools) {devtools.emit('init', Vue)} else if (process.env.NODE_ENV !== 'production' && isChrome) {console[console.info ? 'info' : 'log']('Download the Vue Devtools extension for a better development experience:\n' +'https://github.com/vuejs/vue-devtools')}}if (process.env.NODE_ENV !== 'production' &&config.productionTip !== false &&inBrowser && typeof console !== 'undefined') {console[console.info ? 'info' : 'log'](`You are running Vue in development mode.\n` +`Make sure to turn on production mode when deploying for production.\n` +`See more tips at https://vuejs.org/guide/deployment.html`)}
}, 0)export default Vue

3.core/index.js

clipboard.png

/* @flow */import config from '../config'
import { initUse } from './use'
import { initMixin } from './mixin'
import { initExtend } from './extend'
import { initAssetRegisters } from './assets'
import { set, del } from '../observer/index'
import { ASSET_TYPES } from 'shared/constants'
import builtInComponents from '../components/index'import {warn,extend,nextTick,mergeOptions,defineReactive
} from '../util/index'export function initGlobalAPI (Vue: GlobalAPI) {// 重写config,创建了一个configDef对象,最终目的是为了Object.defineProperty(Vue, 'config', configDef)const configDef = {}configDef.get = () => configif (process.env.NODE_ENV !== 'production') {configDef.set = () => {warn('Do not replace the Vue.config object, set individual fields instead.')}}Object.defineProperty(Vue, 'config', configDef)// 具体Vue.congfig的具体内容就要看../config文件了// exposed util methods.// NOTE: these are not considered part of the public API - avoid relying on them unless you are aware of the risk.// 添加一些方法,但是该方法并不是公共API的一部分。源码中引入了flow.jsVue.util = {warn, // 查看'../util/debug'extend,//查看'../sharde/util'mergeOptions,//查看'../util/options'defineReactive//查看'../observe/index'}Vue.set = set //查看'../observe/index' Vue.delete = del//查看'../observe/index'Vue.nextTick = nextTick//查看'../util/next-click'.在callbacks中注册回调函数// 创建一个纯净的options对象,添加components、directives、filters属性Vue.options = Object.create(null)ASSET_TYPES.forEach(type => {Vue.options[type + 's'] = Object.create(null)})// this is used to identify the "base" constructor to extend all plain-object// components with in Weex's multi-instance scenarios.Vue.options._base = Vue// ../components/keep-alive.js  拷贝组件对象。该部分最重要的一部分。extend(Vue.options.components, builtInComponents)// Vue.options = {//   components : {//     KeepAlive : {//       name : 'keep-alive',//       abstract : true,//       created : function created(){},//       destoryed : function destoryed(){},//       props : {//         exclude : [String, RegExp, Array],//         includen : [String, RegExp, Array],//         max : [String, Number]//       },//       render : function render(){},//       watch : {//         exclude : function exclude(){},//         includen : function includen(){},//       }//     },//     directives : {},//     filters : {},//     _base : Vue//   }// }// 添加Vue.use方法,使用插件,内部维护一个插件列表_installedPlugins,如果插件有install方法就执行自己的install方法,否则如果plugin是一个function就执行这个方法,传参(this, args)initUse(Vue)// ./mixin.js 添加Vue.mixin方法,this.options = mergeOptions(this.options, mixin),initMixin(Vue)// ./extend.js 添加Vue.cid(每一个够着函数实例都有一个cid,方便缓存),Vue.extend(options)方法initExtend(Vue)// ./assets.js 创建收集方法Vue[type] = function (id: string, definition: Function | Object),其中type : component / directive / filterinitAssetRegisters(Vue)
}

Vue.util对象的部分解释:

  • Vue.util.warn
    warn(msg, vm) 警告方法代码在util/debug.js,
    通过var trac = generateComponentTrace(vm)方法vm=vm.$parent递归收集到msg出处。
    然后判断是否存在console对象,如果有 console.error([Vue warn]: ${msg}${trace})。
    如果config.warnHandle存在config.warnHandler.call(null, msg, vm, trace)

  • Vue.util.extend

        extend (to: Object, _from: ?Object):Object Object类型浅拷贝方法代码在shared/util.js
  • Vue.util.mergeOptions

       合并,vue实例化和实现继承的核心方法,代码在shared/options.jsmergeOptions (parent: Object,child: Object,vm?: Component) 先通过normalizeProps、normalizeInject、normalizeDirectives以Object-base标准化,然后依据strats合并策略进行合并。strats是对data、props、watch、methods等实例化参数的合并策略。除此之外还有defaultStrat默认策略。后期暴露的mixin和Vue.extend()就是从这里出来的。[官网解释][1]
  • Vue.util.defineReactive

       大家都知道的数据劫持核心方法,代码在shared/util.jsdefineReactive (obj: Object,key: string,val: any,customSetter?: ?Function,shallow?: boolean) 
    

4.instance/index.js Vue对象生成文件

import { initMixin } from './init'
import { stateMixin } from './state'
import { renderMixin } from './render'
import { eventsMixin } from './events'
import { lifecycleMixin } from './lifecycle'
import { warn } from '../util/index'function Vue (options) {// 判断是否是new调用。if (process.env.NODE_ENV !== 'production' &&!(this instanceof Vue)) {warn('Vue is a constructor and should be called with the `new` keyword')}// 开始初始化this._init(options)
}
// 添加Vue._init(options)内部方法,./init.js
initMixin(Vue)
/*** ./state.js* 添加属性和方法* Vue.prototype.$data * Vue.prototype.$props* Vue.prototype.$watch* Vue.prototype.$set* Vue.prototype.$delete*/ 
stateMixin(Vue)
/*** ./event.js* 添加实例事件* Vue.prototype.$on* Vue.prototype.$once* Vue.prototype.$off* Vue.prototype.$emit*/ 
eventsMixin(Vue)
/*** ./lifecycle.js* 添加实例生命周期方法* Vue.prototype._update* Vue.prototype.$forceUpdate* Vue.prototype.$destroy*/ 
lifecycleMixin(Vue)
/*** ./render.js* 添加实例渲染方法* 通过执行installRenderHelpers(Vue.prototype);为实例添加很多helper* Vue.prototype.$nextTick* Vue.prototype._render*/ 
renderMixin(Vue)export default Vue

5.instance/init.js

初始化,完成主组件的所有动作的主线。从这儿出发可以理清observer、watcher、compiler 、render等

import config from '../config'
import { initProxy } from './proxy'
import { initState } from './state'
import { initRender } from './render'
import { initEvents } from './events'
import { mark, measure } from '../util/perf'
import { initLifecycle, callHook } from './lifecycle'
import { initProvide, initInjections } from './inject'
import { extend, mergeOptions, formatComponentName } from '../util/index'let uid = 0export function initMixin (Vue: Class<Component>) {Vue.prototype._init = function (options?: Object) {const vm: Component = this// a uidvm._uid = uid++let startTag, endTag/* istanbul ignore if */if (process.env.NODE_ENV !== 'production' && config.performance && mark) {startTag = `vue-perf-start:${vm._uid}`endTag = `vue-perf-end:${vm._uid}`mark(startTag)}// a flag to avoid this being observedvm._isVue = true// merge optionsif (options && options._isComponent) {// optimize internal component instantiation// since dynamic options merging is pretty slow, and none of the// internal component options needs special treatment.initInternalComponent(vm, options)} else {vm.$options = mergeOptions(resolveConstructorOptions(vm.constructor),options || {},vm)}/* istanbul ignore else */if (process.env.NODE_ENV !== 'production') {initProxy(vm)} else {vm._renderProxy = vm}// expose real selfvm._self = vminitLifecycle(vm)initEvents(vm)/*** 添加vm.$createElement vm.$vnode vm.$slots vm.* 创建vm.$attrs  /  vm.$listeners 并且转换为getter和setter* */initRender(vm)callHook(vm, 'beforeCreate')initInjections(vm) // resolve injections before data/props vm.$scopedSlots /*** 1、创建 vm._watchers = [];* 2、执行if (opts.props) { initProps(vm, opts.props); } 验证props后调用defineReactive转化,并且代理数据proxy(vm, "_props", key);* 3、执行if (opts.methods) { initMethods(vm, opts.methods); } 然后vm[key] = methods[key] == null ? noop : bind(methods[key], vm);* 4、处理data,* if (opts.data) {*    initData(vm);* } else {*    observe(vm._data = {}, true /* asRootData */);* }* 5、执行initData:*       (1)先判断data的属性是否有与methods和props值同名*       (2)获取vm.data(如果为function,执行getData(data, vm)),代理proxy(vm, "_data", key);*       (3)执行 observe(data, true /* asRootData */);递归观察* 6、完成observe,具体看解释*/initState(vm)initProvide(vm) // resolve provide after data/propscallHook(vm, 'created')/* istanbul ignore if */if (process.env.NODE_ENV !== 'production' && config.performance && mark) {vm._name = formatComponentName(vm, false)mark(endTag)measure(`vue ${vm._name} init`, startTag, endTag)}if (vm.$options.el) {vm.$mount(vm.$options.el)}}
}

二、observe 响应式数据转换

1.前置方法 observe(value, asRootData)

function observe (value, asRootData) {// 如果value不是是Object 或者是VNode这不用转换if (!isObject(value) || value instanceof VNode) {return}var ob;// 如果已经转换就复用if (hasOwn(value, '__ob__') && value.__ob__ instanceof Observer) {ob = value.__ob__;} else if (//一堆必要的条件判断observerState.shouldConvert &&!isServerRendering() &&(Array.isArray(value) || isPlainObject(value)) &&Object.isExtensible(value) &&!value._isVue) {//这才是observe主体ob = new Observer(value);}if (asRootData && ob) {ob.vmCount++;}return ob
}

2.Observer 类

var Observer = function Observer (value) {// 当asRootData = true时,其实可以将value当做vm.$options.data,后面都这样方便理解this.value = value;/*** 为vm.data创建一个dep实例,可以理解为一个专属事件列表维护对象* 例如: this.dep = { id : 156, subs : [] }* 实例方法: this.dep.__proto__ = { addSub, removeSub, depend, notify, constructor }*/this.dep = new Dep();//记录关联的vm实例的数量this.vmCount = 0;//为vm.data 添加__ob__属性,值为当前observe实例,并且转化为响应式数据。所以看一个value是否为响应式就可以看他有没有__ob__属性def(value, '__ob__', this);//响应式数据转换分为数组、对象两种。if (Array.isArray(value)) {var augment = hasProto? protoAugment: copyAugment;augment(value, arrayMethods, arrayKeys);this.observeArray(value);} else {//对象的转换,而且walk是Observer的实例方法,请记住this.walk(value);}
};

3.walk

该方法要将vm.data的所有属性都转化为getter/setter模式,所以vm.data只能是Object。数组的转换不一样,这里暂不做讲解。

Observer.prototype.walk = function walk (obj) {// 得到key的列表var keys = Object.keys(obj);for (var i = 0; i < keys.length; i++) {//核心方法:定义响应式数据的方法  defineReactive(对象, 属性, 值);这样看是不是就很爽了defineReactive(obj, keys[i], obj[keys[i]]);}
};

4.defineReactive(obj, key, value)

function defineReactive (obj,key,val,customSetter, //自定义setter,为了测试shallow //是否只转换这一个属性后代不管控制参数,false :是,true : 否
) {/*** 又是一个dep实例,其实作用与observe中的dep功能一样,不同点:*     1.observe实例的dep对象是父级vm.data的订阅者维护对象*     2.这个dep是vm.data的属性key的订阅者维护对象,因为val有可能也是对象*     3.这里的dep没有写this.dep是因为defineReactive是一个方法,不是构造函数,所以使用闭包锁在内存中*/var dep = new Dep();// 获取key的属性描述符var property = Object.getOwnPropertyDescriptor(obj, key);// 如果key属性不可设置,则退出该函数if (property && property.configurable === false) {return}// 为了配合那些已经的定义了getter/setter的情况var getter = property && property.get;var setter = property && property.set;//递归,因为没有传asRootData为true,所以vm.data的vmCount是部分计数的。因为它还是属于vm的数据var childOb = !shallow && observe(val);/*** 全部完成后observe也就完成了。但是,每个属性的dep都没启作用。* 这就是所谓的依赖收集了,后面继续。*/Object.defineProperty(obj, key, {enumerable: true,configurable: true,get: function reactiveGetter () {var value = getter ? getter.call(obj) : val;if (Dep.target) {dep.depend();if (childOb) {childOb.dep.depend();if (Array.isArray(value)) {dependArray(value);}}}return value},set: function reactiveSetter (newVal) {var value = getter ? getter.call(obj) : val;/* eslint-disable no-self-compare */if (newVal === value || (newVal !== newVal && value !== value)) {return}/* eslint-enable no-self-compare */if (process.env.NODE_ENV !== 'production' && customSetter) {customSetter();}if (setter) {setter.call(obj, newVal);} else {val = newVal;}childOb = !shallow && observe(newVal);dep.notify();}});
}

三、依赖收集

一些个人理解:1、Watcher 订阅者可以将它理解为,要做什么。具体的体现就是Watcher的第二个参数expOrFn。2、Observer 观察者其实观察的体现就是getter/setter能够观察数据的变化(数组的实现不同)。3、dependency collection 依赖收集订阅者(Watcher)是干事情的,是一些指令、方法、表达式的执行形式。它运行的过程中肯定离不开数据,所以就成了这些数据的依赖项目。因为离不开^_^数据。数据是肯定会变的,那么数据变了就得通知数据的依赖项目(Watcher)让他们再执行一下。依赖同一个数据的依赖项目(Watcher)可能会很多,为了保证能够都通知到,所以需要收集一下。4、Dep 依赖收集器构造函数因为数据是由深度的,在不同的深度有不同的依赖,所以我们需要一个容器来装起来。Dep.target的作用是保证数据在收集依赖项(Watcher)时,watcher是对这个数据依赖的,然后一个个去收集的。

1、Watcher

Watcher (vm, expOrFn, cb, options)
参数:
{string | Function} expOrFn
{Function | Object} callback
{Object} [options]{boolean} deep{boolean} user{boolean} lazy{boolean} sync
在Vue的整个生命周期当中,会有4类地方会实例化Watcher:Vue实例化的过程中有watch选项Vue实例化的过程中有computed计算属性选项Vue原型上有挂载$watch方法: Vue.prototype.$watch,可以直接通过实例调用this.$watch方法Vue生成了render函数,更新视图时Watcher接收的参数当中expOrFn定义了用以获取watcher的getter函数。expOrFn可以有2种类型:string或function.若为string类型,
首先会通过parsePath方法去对string进行分割(仅支持.号形式的对象访问)。在除了computed选项外,其他几种实例化watcher的方式都
是在实例化过程中完成求值及依赖的收集工作:this.value = this.lazy ? undefined : this.get().在Watcher的get方法中:
var Watcher = function Watcher (vm,expOrFn,cb,options
) {this.vm = vm;vm._watchers.push(this);// optionsif (options) {this.deep = !!options.deep;this.user = !!options.user;this.lazy = !!options.lazy;this.sync = !!options.sync;} else {this.deep = this.user = this.lazy = this.sync = false;}//相关属性this.cb = cb;this.id = ++uid$2; // uid for batchingthis.active = true;this.dirty = this.lazy; // for lazy watchers//this.deps = [];this.newDeps = [];//set类型的idsthis.depIds = new _Set();this.newDepIds = new _Set();// 表达式this.expression = process.env.NODE_ENV !== 'production'? expOrFn.toString(): '';// 创建一个getterif (typeof expOrFn === 'function') {this.getter = expOrFn;} else {this.getter = parsePath(expOrFn);if (!this.getter) {this.getter = function () {};process.env.NODE_ENV !== 'production' && warn("Failed watching path: \"" + expOrFn + "\" " +'Watcher only accepts simple dot-delimited paths. ' +'For full control, use a function instead.',vm);}}this.value = this.lazy? undefined: this.get();//执行get收集依赖项
};

2、Watcher.prototype.get

通过设置观察值(this.value)调用this.get方法,执行this.getter.call(vm, vm),这个过程中只要获取了某个响应式数据。那么肯定会触发该数据的getter方法。因为当前的Dep.target = watcher。所以就将该watcher作为了这个响应数据的依赖项。因为watcher在执行过程中的确需要、使用了它、所以依赖它。

Watcher.prototype.get = function get () {//将这个watcher观察者实例添加到Dep.target,表明当前为this.expressoin的依赖收集时间pushTarget(this);var value;var vm = this.vm;try {/*** 执行this.getter.call(vm, vm):*     1、如果是function则相当于vm.expOrFn(vm),只要在这个方法执行的过程中有从vm上获取属性值的都会触发该属性值的get方法从而完成依赖收集。因为现在Dep.target=this. *     2、如果是字符串(如a.b),那么this.getter.call(vm, vm)就相当于vm.a.b*/ value = this.getter.call(vm, vm);} catch (e) {if (this.user) {handleError(e, vm, ("getter for watcher \"" + (this.expression) + "\""));} else {throw e}} finally {// "touch" every property so they are all tracked as// dependencies for deep watchingif (this.deep) {traverse(value);}popTarget();this.cleanupDeps();}return value
};

3、getter/setter

Object.defineProperty(obj, key, {enumerable: true,configurable: true,get: function reactiveGetter () {var value = getter ? getter.call(obj) : val;if (Dep.target) {//依赖收集,这里又饶了一圈,看后面的解释dep.depend();if (childOb) {childOb.dep.depend();if (Array.isArray(value)) {dependArray(value);}}}return value},set: function reactiveSetter (newVal) {var value = getter ? getter.call(obj) : val;/* eslint-disable no-self-compare */if (newVal === value || (newVal !== newVal && value !== value)) {return}/* eslint-enable no-self-compare */if (process.env.NODE_ENV !== 'production' && customSetter) {customSetter();}if (setter) {setter.call(obj, newVal);} else {val = newVal;}childOb = !shallow && observe(newVal);//数据变动出发所有依赖项dep.notify();}});

- 依赖收集具体动作:

//调用的自己dep的实例方法
Dep.prototype.depend = function depend () {if (Dep.target) {//调用的是当前Watcher实例的addDe方法,并且把dep对象传过去了Dep.target.addDep(this);}
};Watcher.prototype.addDep = function addDep (dep) {var id = dep.id;if (!this.newDepIds.has(id)) {//为这个watcher统计内部依赖了多少个数据,以及其他公用该数据的watcherthis.newDepIds.add(id);this.newDeps.push(dep);if (!this.depIds.has(id)) {//继续为数据收集依赖项目的步骤dep.addSub(this);}}
};
Dep.prototype.addSub = function addSub (sub) {this.subs.push(sub);
};

- 数据变动出发依赖动作:

Dep.prototype.notify = function notify () {// stabilize the subscriber list firstvar subs = this.subs.slice();for (var i = 0, l = subs.length; i < l; i++) {subs[i].update();}
};
//对当前watcher的处理
Watcher.prototype.update = function update () {/* istanbul ignore else */if (this.lazy) {this.dirty = true;} else if (this.sync) {this.run();} else {queueWatcher(this);}
};
//把一个观察者推入观察者队列。
//具有重复id的作业将被跳过,除非它是
//当队列被刷新时被推。
export function queueWatcher (watcher: Watcher) {const id = watcher.idif (has[id] == null) {has[id] = trueif (!flushing) {queue.push(watcher)} else {// if already flushing, splice the watcher based on its id// if already past its id, it will be run next immediately.let i = queue.length - 1while (i > index && queue[i].id > watcher.id) {i--}queue.splice(i + 1, 0, watcher)}// queue the flushif (!waiting) {waiting = truenextTick(flushSchedulerQueue)}}
}

本文来自互联网用户投稿,该文观点仅代表作者本人,不代表本站立场。本站仅提供信息存储空间服务,不拥有所有权,不承担相关法律责任。如若转载,请注明出处:http://www.mzph.cn/news/256917.shtml

如若内容造成侵权/违法违规/事实不符,请联系多彩编程网进行投诉反馈email:809451989@qq.com,一经查实,立即删除!

相关文章

神经网络中的反向传播算法

神经网络中的方向传播算法讲得复杂难懂。简单地说明它的原理&#xff1a; 神经网络&#xff1a;输入层&#xff0c;隐藏层&#xff0c;输出层。根据线性关系&#xff0c;激活函数&#xff0c;并最终根据监督学习写出误差表达式。此时&#xff0c;误差函数可写成&#xff0c;那么…

有限元笔记02:第三章

1.局部坐标到全局坐标变换 2.

Android 抽屉布局

目前部分APP使用一种类似抽屉式的布局&#xff0c;像QQ那种&#xff0c;感觉很炫&#xff0c;自己也一直想做一个像那样的布局&#xff0c;&#xff08;ps网上很多这样的例子&#xff0c;我下面做的就是参考网上的改变的&#xff09; 废话不就不说了&#xff0c;直接上代码 1、…

双目标定算法

坐标系基础知识&#xff1a; > 1.1. 从像素坐标系(u,v) 到 世界坐标系(Xw,Yw,Yw) 这里直接拿上篇博文的结果&#xff0c;中间省去了其它坐标系直接的关系&#xff0c;直接给出&#xff0c;如下所示&#xff1a; 公式如下&#xff1a; > 1.2. 符号规定( Notation ) 为了…

Excel使用控件创建动态地图图表

[本文软件Excel 2010] 效果图&#xff1a; 首先我们看一下数据源 数据源中第二列是对应图形的名称。首先创建图形&#xff0c;我们可能在网络中找到各个地图的矢量图形。不过不是每个地图图形都适合我们&#xff0c;或许企业划分非按照行政区划分。因此可以尝试自己绘制&#x…

使用Configuration Manager部署及管理软件更新(2)

承接上一篇文章&#xff1a;http://ericxuting.blog.51cto.com/8995534/1543835 一、 确定软件更新符合性 1. 打开Configuration Manager管理控制台&#xff0c;点击软件库&#xff0c;展开软件更新&#xff0c;点击所有软件更新 2. 点击主页中的运行摘要&#xff0c;等待对话框…

Fiddler 域名过滤

原来一直没意识到Fiddler过滤&#xff0c;导致每次抓包都要自己判断、搜索好多东西&#xff0c;真是呵呵&#xff01; 过滤设置很简单&#xff0c;看懂一张图就解决问题了。 箭头 那两处设置下&#xff0c;圆圈处保存再进行抓包即可 转载于:https://www.cnblogs.com/eejron/p/4…

windows中VS卸载opencv配置,重新安装其他版本

1、找到工程的属性管理器&#xff0c;电机Debug64和Release64下面的 包含目录和库目录&#xff0c;删掉其原由配置的oepncv路径&#xff1b; 找到链接器中的附加依赖项&#xff0c;删掉原有的配置&#xff1b;

学习笔记(36):Python网络编程并发编程-IO模型介绍

立即学习:https://edu.csdn.net/course/play/24458/296460?utm_sourceblogtoedu I/O模型介绍&#xff1a;I/O模型表示处于等待状态的模型&#xff0c;如套接字通讯的accept和recv函数一样 1.同步I/O 2.异步I/O 3.阻塞I/O 4.非阻塞I/O

AD9 如何画4层pcb板

新建的PCB文件默认的是2层板&#xff0c;教你怎么设置4层甚至更多层板。在工具栏点击Design-->Layer Stack Manager.进入之后显示的是两层板&#xff0c;添加为4层板&#xff0c;一般是先点top layer, 再点Add Layer,再点Add Layer&#xff0c;这样就成了4层板。见下图。 有…

windows上使用cmake 编译yaml-cpp源码,生成yam-cpp.lib

1、打开cmake-gui 2、添加CmakeList 3、建立build 4、进入工程中生成debug和release版本的lib

BZOJ 3039: 玉蟾宫( 悬线法 )

最大子矩阵...悬线法..时间复杂度O(nm)悬线法就是记录一个H向上延伸的最大长度(悬线), L, R向左向右延伸的最大长度, 然后通过递推来得到. ------------------------------------------------------------------#include<bits/stdc.h>using namespace std;#define ok(c) …

学习笔记(37):Python实战编程-yield实现生成器

立即学习:https://edu.csdn.net/course/play/19711/255579?utm_sourceblogtoedu1.yield return generator yield是一个返回的是一个生成器对象&#xff0c;是通过next函数一次一次地进行函数地迭代来获取结果的&#xff0c;而return函数则是将结果返回后&#xff0c;不再与…

Mocha BSM产品亮点——关联事件分析

业务需求与挑战企业经常会遇到下列场景&#xff1a;• 企业某应用&#xff0c;例如&#xff0c;WebSphere Portal Server&#xff0c;已经不可用&#xff0c;是由于应用自身已不可用&#xff1f;还是应用所连接的数据库出了问题&#xff1f;还是应用的LDAP服务不可用&#xff1…

学习笔记(38):Python实战编程-窗体显示

立即学习:https://edu.csdn.net/course/play/19711/343100?utm_sourceblogtoedu GUI&#xff1a;图形用户接口——GUI组件&#xff0c;组件定义&#xff0c;组件布局管理 主体窗口的设置&#xff1a; import tkinter#导入创建窗体的相关模块class Mainwindow():#创建窗口类de…

Tomcat 配置和spring-framework MVC配置简介

Tomcat启动时&#xff0c;先找系统变量CATALINA_BASE&#xff0c;如果没有&#xff0c;则找CATALINA_HOME。然后找这个变量所指的目录下的conf文件夹&#xff0c;从中读取配置文件。最重要的配置文件&#xff1a;server.xml 。要配置tomcat&#xff0c;基本上了解server.xml&am…

ultra edit ftp帐号管理导入导出方法

在更换电脑或ultra edit新安装时往往需要将原来使用的ftp帐号导入过来&#xff0c;可以在高级-备份/恢复用户定制-选中其他保存备份&#xff0c;拷贝出来然后再导入。 也可以在配置-ftp/sftp中保存&#xff0c;拷贝出来然后在安装好后配置。 步骤1. 导出ftp帐号信息&#xff1a…

学习笔记(41):Python实战编程-按钮

立即学习:https://edu.csdn.net/course/play/19711/343103?utm_sourceblogtoedu 按钮——用于指令的提交作用&#xff0c;如将文本中输入的信息进行提交等 button tkinter.Button(root,text linlianqin,image photo,compound bottom) 创建了一个图片按钮&#xff0c;并且…

学习笔记(42):Python实战编程-pyinstaller程序打包

将程序打包可以使得所有Windows带有python虚拟机的电脑进行使用&#xff0c;打包的内容有代码加外部资源&#xff08;如logo图片等&#xff09; 步骤&#xff1a; 1&#xff09;创建程序的代码 2&#xff09;生成配置文件——用于获得打包的资源&#xff0c;将资源保存在运行程…

透视校正

1、需要解决的问题&#xff1a; 怎么用图像处理的办法将梯形转换为规则的矩形&#xff0c;进行一个视觉的透视校正 2、解决思路&#xff1a; 1&#xff09;先二值化图像&#xff0c;提取其轮廓&#xff08;其中使用到填充&#xff0c;形态学知识&#xff09; 2&#xff09;…