码迷,mamicode.com
首页 >  
搜索关键字:author    ( 11116个结果
数据结构双向链表 DoublyLinkedList
package datastructures.linked; import java.util.Iterator; /** * @author warriorg */ public class DoublyLinkedList<T> implements Iterable<T> { private ...
分类:其他好文   时间:2020-07-10 19:19:46    阅读次数:52
单例模式8种写法
1 package com.learn.design_pattern.singleton; 2 3 /** 4 * TODO 5 * 6 * @author chip 7 * @version 1.0 8 * @date 2020/7/10 16:59 9 * 饿汉模式第一种(静态常量) 10 * ...
分类:其他好文   时间:2020-07-10 19:09:58    阅读次数:61
函数式接口
1 /** 2 * @author jliu.l 3 * @2020年7月8日 4 * 5 */ 6 public class Demo01Logger { 7 public static void showLog(int level,MessageBuilder mb) { 8 if(level= ...
分类:其他好文   时间:2020-07-10 17:03:01    阅读次数:53
函数式接口作为参数
1 /** 2 * @author jliu.l 3 * @2020年7月10日 4 * 5 */ 6 public class Demo01Runnable { 7 8 public static void startThread(Runnable run) { 9 new Thread(run) ...
分类:其他好文   时间:2020-07-10 16:59:48    阅读次数:62
万年历
1 /** 2 * @author jliu.l 3 * @2020年7月7日 4 * 5 */ 6 public class Calendar { 7 8 public static void main(String[] args) { 9 System.out.println(" 万年历 "); ...
分类:其他好文   时间:2020-07-10 16:49:45    阅读次数:145
Leetcode 11 盛水最多的容器 贪心算法
暴力解法很容易: /** * @Author Niuxy * @Date 2020/7/9 9:49 下午 * @Description 暴力解法 */ public final int maxArea0(int[] height) { int max = 0; for (int i = 0; i ...
分类:编程语言   时间:2020-07-10 00:14:45    阅读次数:71
AngularJS ng-open 指令
[AngularJS ng-open 指令 AngularJS 参考手册AngularJS 实例通过点击 checkbox 显示或隐藏 列表: 学的不仅是技术,更是梦想! - Break易站定义和用法ng-open 指令用于设置 details 列表的 open 属性。如果 ng-open 的表达式... ...
分类:Web程序   时间:2020-07-09 12:38:15    阅读次数:85
Assignment Operators (Operators) – JavaScript 中文开发手册
[JavaScript 中文开发手册Assignment Operators (Operators) - JavaScript 中文开发手册赋值运算符(assignment operator)基于右值(right operand)的值,给左值(left operand)赋值。] 本文标题:Assig... ...
分类:编程语言   时间:2020-07-09 12:29:15    阅读次数:74
Java 实例 – 重载方法异常处理
[Java 实例 - 重载方法异常处理 Java 实例以下实例演示了重载方法的异常处理:Main.java 文件 public class Main { double method(int i) throws Exception{ return i/0; } boolean method(boole... ...
分类:编程语言   时间:2020-07-09 12:19:43    阅读次数:71
filecmp (File & Directory Access) – Python 中文开发手册
[Python 中文开发手册filecmp (File & Directory Access) - Python 中文开发手册源代码: Lib / filecmp.pyfilecmp模块定义了比较文件和目录的功能,以及各种可选的时间/正确性折衷。为了比较文件,请参阅difflib模块。filecmp... ...
分类:数据库   时间:2020-07-09 11:56:45    阅读次数:73
11116条   上一页 1 ... 34 35 36 37 38 ... 1112 下一页
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!