上一页 1 ··· 16 17 18 19 20 21 22 23 24 ··· 30 下一页

2018年3月26日

Java8 中的 default

摘要: 之前的版本里 interface 中的方法必须是抽象方法,不能有方法体。现在可以添加 interface 内方法,只需要在方法的前面加一个 default 关键字,表示属于接口内部默认存在的方法。 如果两个接口包括的默认方法同名,当一个 class 同时实现这两个接口,并调用他们共同的 defaul 阅读全文

posted @ 2018-03-26 13:48 Lemo_wd 阅读(276) 评论(0) 推荐(0) 编辑

2018年3月24日

mvc、mvp与 mvvm 区别

摘要: 原文 阅读全文

posted @ 2018-03-24 20:52 Lemo_wd 阅读(107) 评论(0) 推荐(0) 编辑

unicode 字符集 与 utf-8 编码

摘要: 字符集 Unicode 是一个很大的集合,可以容纳100多万个符号。每个符号的编号都不一样,比如,U+0639表示阿拉伯字母Ain,U+0041表示英语的大写字母A,U+4E25表示汉字严。具体的符号编号对应表,可以查询unicode.org,或者专门的汉字对应表。 字符编码 有了字符集,人们就可以 阅读全文

posted @ 2018-03-24 04:28 Lemo_wd 阅读(357) 评论(0) 推荐(0) 编辑

2018年3月20日

java 中的 Comparable 和 Comparator 与 Iterable 和 Iterator

摘要: Comparable 和 Comparator 1、Comparable<T> 比较的是当前值与另一个值。 public interface Comparable<T> { public int compareTo(T o); } 举例: Date dt = new Date(); // 默认计算从 阅读全文

posted @ 2018-03-20 22:25 Lemo_wd 阅读(377) 评论(0) 推荐(0) 编辑

2018年3月8日

Java 中的泛型

摘要: 一、泛型的定义与作用 泛型,又叫 参数多态,在c++里又叫模板。是指声明与定义函数或变量时不指定其具体的类型,而把这部分类型作为参数使用,使得该定义对各种具体类型都适用。通常意义的多态是将这里不特定的类型参数替换成父类型,将具体类型的实现替换成子类型。故而泛型可看作一种特殊的多态(概念角度)。 泛型 阅读全文

posted @ 2018-03-08 16:24 Lemo_wd 阅读(218) 评论(0) 推荐(0) 编辑

2018年3月2日

rails 杂记 - model 中的exists?

摘要: 1. exists? 用法 有一段代码 参考 这里的 exitsts?(column => self[column]) 类似于 .find_by_user_id(current_user.id) 整段代码的意思是如果随机码与已知用户的随机码重复则重新再随机,直到不再重复。 阅读全文

posted @ 2018-03-02 22:55 Lemo_wd 阅读(229) 评论(0) 推荐(0) 编辑

rails 杂记 - render and layout

摘要: 官方文档:http://guides.rubyonrails.org/layouts_and_rendering.html 渲染 view 渲染 html.rb 与相应的 action controller 或者渲染 aciton 渲染另一个不同的 controller 或者更明确地写作 渲染一个特 阅读全文

posted @ 2018-03-02 15:12 Lemo_wd 阅读(423) 评论(0) 推荐(0) 编辑

rails 杂记 - erb 中的 form_helper

摘要: 原文 1. form_tag 1) 基础 Form 生成 html 2) 指定 url与 method 生成 html 3) 指定 controller 与 action 4)几个 tag check_box_tag radio_button_tag 2. form_for 1)如果设置了 reso 阅读全文

posted @ 2018-03-02 12:43 Lemo_wd 阅读(280) 评论(0) 推荐(0) 编辑

2018年3月1日

rails 杂记 - erb 中的 link_to 的 ActiveRecord 与 render 中的 partial

摘要: 路由及路由参数 在 {} 里的内容被当作query参数,在{}外面的被当作 html属性。 将 ActiveRecord 作为 link_to 或 redirect_to 对象 (参考:http://guides.rubyonrails.org/routing.html#creating-paths 阅读全文

posted @ 2018-03-01 19:22 Lemo_wd 阅读(136) 评论(0) 推荐(0) 编辑

2018年2月28日

ruby 基础知识2 - 区块 block

摘要: 原文 1. block中的 yield 与遍历 或者 2. block 物件化 由于 block不能单独存在。可以借助 Proc.new 比如 或者 调用 结束 阅读全文

posted @ 2018-02-28 16:27 Lemo_wd 阅读(149) 评论(0) 推荐(0) 编辑

上一页 1 ··· 16 17 18 19 20 21 22 23 24 ··· 30 下一页

导航