- 博客(9)
- 收藏
- 关注
原创 Vue2.0学习——生命周期
学习了Vue2.0,但对Vue2.0生命周期一直不是很理解,今天来梳理一下。 首先上图: 可以看到分为:beforeCreate在实例初始化之后,数据观测(data observer) 和 event/watcher 事件配置之前被调用。 也就是说现在还不能使用datacreated实例创建完成,属性也已经绑定,但是dom还未生成 实例已经创建完成之后被调用。在这一步,实例已完成以下的配
2017-05-24 21:33:52 804
原创 JS排序算法:冒泡法、快速排序法、选择排序法、插入排序法、哈希排序
JS排序算法:冒泡法、快速排序法、选择排序法、插入排序法、哈希排序//生成数组var arr = new Array(1000);for (var i = 0; i < 1000; i++) { arr[i] = (Math.round(Math.random() * 1000));}1.冒泡法 排序思想:数组相邻两项进行比较,如果前一项比后一项大则交换位置,比较arr.le
2017-03-29 16:23:17 6905 1
原创 JS字符串方法总结
**JS字符串方法总结** 1.charAt() 返回指定索引位置的字符2.charCodeAt() 返回指定索引位置字符的 Unicode 值3.concat() 连接两个或多个字符串,返回连接后的字符串4.fromCharCode() 将 Unicode 转换为字符串5.indexOf() 返回字符串中检索指定字符第一次出现的位置6.lastIndexOf() 返回
2017-03-29 10:24:53 284
原创 JS数组方法总结shift()、unshift()、pop()、push()、concat()、splice()、filter()、map()、some()、every()、forEach()等方法
JS数组方法总结虽然经常使用JS数组的方法,但重来没有真正的全部总结过,这次把编程过程中我常见的数组方法列出来。 shift、 测试数组var array = new Array(1,2,3,4,5,6,7,8,9,10);var nullarray = new Array();//空数组1.shift() 删除原数组第一项,并返回删除元素的值,如果数组为空则返回undefined。该方法会
2017-03-28 11:41:39 2209
原创 LeetCode第3题
3. Longest Substring Without Repeating Characters Given a string, find the length of the longest substring without repeating characters.Examples:Given “abcabcbb”, the answer is “abc”, which the length
2016-07-03 23:55:57 1170
原创 LeetCode第2题
2. Add Two Numbers You are given two linked lists representing two non-negative numbers. The digits are stored in reverse order and each of their nodes contain a single digit. Add the two numbers and
2016-07-03 12:29:23 333
原创 LeetCode第1题
LeetCode第1题:Two SumGiven an array of integers, return indices of the two numbers such that they add up to a specific target.You may assume that each input would have exactly one solution.Example
2016-07-02 22:49:25 297
原创 Java反射机制的几点用法
什么是Java反射机制?Java的反射机制是反应Java作为动态(准动态)语言的关键性质。这个机制允许程序在运行时加载、使用编译期间完全未知的classes。具体功能包括: 1、在运行时判断任意一个对象所属的类。 2、在运行时构造任意一个类的对象。 3、在运行时判断任意一个类所具有的成员变量与方法。 4、在运行时调用任意一个对象的方法。 5、在运行时创建新类对象。在使用Java的反射功能时
2016-02-28 22:47:00 366
原创 JAVA中this与super两个关键字的用法
讨论一下JAVA中this与super两个关键字的用法。 在Java中this通常指当前对象,super通常指父对象,如果想引用当前对象的某种东西,比如当前对象的成员属性或者方法,则可使用this来实现这个目的。
2016-02-28 15:21:06 426
空空如也
空空如也
TA创建的收藏夹 TA关注的收藏夹
TA关注的人