2014-01-01 W.Y.
参考原文:https://github.com/angular-ui/ui-router/wiki/Nested-States-%26-Nested-Views 状态嵌套的方法 状态可以相互嵌套。有三个嵌套的方法: 1. 使用“点标记法”,例如:.state('contacts.list', {}) 2. 使用parent属性,指定一个父状态的名称字符串,例如:parent: 'contacts' 3. 使用parent属性,指定一个父状态对象,例如:parent: contacts(contacts 是一个状态对象) more 点标记法 在$stateProvider中可以使用点语法来表示层次结构,下面,contacts 继续阅读 »
2015-02-12 Brian Li
在这篇文章中,我们会利用Spring的@PropertySource和@Value两个注解从配置文件properties中读取值,以及如何从配置文件中的值转换为List对象。 创建Spring配置Class 继续阅读 »
2015-10-06 AnnatarHe
通过表单(form)添加任务 在这个步骤,我们将为用户在列表上添加输入框。 首先,在App.jsx文件中App组件上添加表单吧。 Todo List 继续阅读 »
2015-09-15 biezhi
在这篇文章中我将向你演示如何使用Java8中的foreach操作List和Map 1. Foreach操作Map 1.1 正常方式遍历Map ```java Map items = new HashMap<>(); items.put("A", 10); items.put("B", 20); items.put("C", 30); items.put("D", 40); items.put("E", 50); items.put("F", 60); for (Map.Entry entry : items.entrySet()) { System.out.println("Item : " + entry.getK 继续阅读 »
2014-03-15 Kun Ren
In R, function may not be as special as it is in other programming languages; it is regarded as one of the many types and can be passed as an argument to some other function. The way we deal with other objects such list and data.frame definitely applies to function. Here is a simple example in which we define two funct 继续阅读 »
2016-12-21 Robin Wen
文/Robin 推广 正版软件,尽在 数码荔枝。点击 https://partner.lizhi.io/robin/cp 领取专属「优惠券」,全场订单满 29 元减 5 元。此外,还有海量正版软件专属优惠,点击 此处 联系我获取。 前言 人类跟动物最本质的区别,就是人会互联主观、联合想象、创造意义。 个人认为,提升效率的利器,应该在经济承受范围以内毫不犹豫地拥有。工作以来,一贯的宗旨就是为美好的事物花费。这份清单,于己于人,或多或少有所帮助。倘若读者因此受益,实在是荣幸不已。 本利器清单在不断更新中。另外,笔者还有一份 Wish List,里面的部分软件价格令人瞠目结舌,待笔者有条件购买之后再同步到此清单。 赠人玫瑰, 继续阅读 »
2015-01-01 Jamling
Introduction Quickly new Activity/Service/BroadcastReceiver/ContentProvider in Android Project with a wizard and configurate in AndroidManifest.xml. Main function list: - New Activity/Service/BroadcastReceiver. - Customize action and category for intent-filter. - New ContentProvider. - Customize authorities 继续阅读 »
2017-02-06 高悦翔
本文是「Java 8 函数式编程」第三章的读书笔记,章名为流。本章主要介绍了外部迭代与内部迭代以及常用的高阶函数。 外部迭代与内部迭代 外部迭代 过去我们要对一个List进行迭代时,往往会采用如下方式: java int count = 0; for (Artist artist : artists) { if (artist.isFrom("London")) { count++; } } 继续阅读 »
2016-09-03 craneyuan
定义 快速排序(英语:Quick Sort),又称划分交换排序(partition-exchange sort),一种排序算法,最早由东尼·霍尔提出。在平均状况下,排序n个项目要Ο(n log n)次比较。在最坏状况下则需要Ο(n2)次比较,但这种状况并不常见。事实上,快速排序通常明显比其他Ο(n log n)算法更快,因为它的内部循环(inner loop)可以在大部分的架构上很有效率地被实现出来。 more 算法步骤 快速排序使用分治法(Divide and conquer)策略来把一个序列(list)分为两个子序列(sub-lists)。 步骤为: 从数列中挑出一个元素,称为"基准"(pivot), 重新排序数列 继续阅读 »
2015-11-30 Klaus Ma
Configuring a remote for a fork List the current configured remote repository for your fork. $git remote -v origin https://github.com/YOUR_USERNAME/YOUR_FORK.git (fetch) origin https://github.com/YOUR_USERNAME/YOUR_FORK.git (push) 继续阅读 »