上一页 1 ··· 38 39 40 41 42 43 44 45 46 ··· 61 下一页
摘要: 操作系统 一、操作系统概述 (一) 操作系统的概念、特征、功能和提供的服务 (二) 操作系统的发展和分类 (三) 操作系统的运行环境 (四) 操作系统的体系结构 2. 共享: 3.虚拟: 比如说只有一个CPU,但是微信和微博两个进程处理的时候会被处理为两个虚拟的独立的逻辑CPU,各自为进程工作。 4 阅读全文
posted @ 2018-07-22 09:43 hh9515 阅读(392) 评论(0) 推荐(0)
摘要: const EventEmitter = require('events'); const myEmitter = new EventEmitter(); myEmitter.on('event', () => { console.log('触发事件'); }); myEmitter.emit('e 阅读全文
posted @ 2018-07-18 23:19 hh9515 阅读(855) 评论(0) 推荐(0)
摘要: 面试时候被问到了, 二叉查找树: Binary Search Tree(BST) 1.左子树上所有结点的值均小于或等于它的根结点的值。 2.右子树上所有结点的值均大于或等于它的根结点的值。 3.左、右子树也分别为二叉查找树。 比如我想找10 ,右边比9大,到13 左边比13小 到11 左边比11小 阅读全文
posted @ 2018-07-18 01:14 hh9515 阅读(415) 评论(0) 推荐(0)
摘要: Directive 指令 v-for: <li v-for=’food in foodList’>{{fppd}} {{}} new Vue({ el: data:{ foodList:[…] } }) v-bind: :src :class=’klass’ new Vue({ el: data:{ 阅读全文
posted @ 2018-07-17 23:47 hh9515 阅读(431) 评论(0) 推荐(0)
摘要: mysql.select('*').from('books') .join('cSessionInfo', 'books.openid', 'cSessionInfo.open_id') .limit(size) .offset(Number(page)*size) mysql.select('*' 阅读全文
posted @ 2018-07-14 22:24 hh9515 阅读(125) 评论(0) 推荐(0)
摘要: 安装mysql的三步: 中间遇到了坑, 看这篇文章完美的解决了,记录一下 。以后用到再来看 https://blog.csdn.net/mhmyqn/article/details/17043921 阅读全文
posted @ 2018-07-12 00:10 hh9515 阅读(128) 评论(0) 推荐(0)
摘要: git clone 代表从远程克隆过来包括所有的版本信息 git fetch是从远程获取最新的版本 git pull相当于 git fetch 然后再git merge 阅读全文
posted @ 2018-07-11 15:02 hh9515 阅读(167) 评论(0) 推荐(0)
摘要: 1.Headings: 2.Phrase emphasis *italic text* **Bold text** 3.Listing items (在文字之前添加 + , - 或者 * ) -item1 -item2 4.块注释 在文字开头添加 > 表示块注释,使用>>,表示多级块注释。左侧为ma 阅读全文
posted @ 2018-07-11 14:42 hh9515 阅读(221) 评论(0) 推荐(0)
摘要: 1.bodyParser和cookieParser: const bodyParser = require('body-parser') const cookieParser = require('cookie-parser') app.use(cookieParser()); app.use(bo 阅读全文
posted @ 2018-07-10 08:50 hh9515 阅读(147) 评论(0) 推荐(0)
摘要: 1.基于cookie的用户认证 express 依赖 cookie-parser 2.axios语法: axios.get('/data').then(res=>{ if(res.status==200){ if(res.data.code==0) { .......... } } }) 3.非ro 阅读全文
posted @ 2018-07-09 20:09 hh9515 阅读(210) 评论(0) 推荐(0)
上一页 1 ··· 38 39 40 41 42 43 44 45 46 ··· 61 下一页