码迷,mamicode.com
首页 >  
搜索关键字:nav bar    ( 7915个结果
call_user_func 详解
先来看解释 : (PHP 4, PHP 5, PHP 7) call_user_func — 把第一个参数作为回调函数调用 通过函数的方式回调<?php function barber($type){ echo "you wanted a $type haircut, no problem\n";} ...
分类:其他好文   时间:2020-07-02 18:30:36    阅读次数:63
原型链来啦~
//自定义 function foo(){ } new Function(); class bar{} //原生的 Function,object,Array,Map,String,Boolean,RegExp,Date,(JSON:普通对象,Math:普通对象) 普通对象,引用数据类型: {} > ...
分类:其他好文   时间:2020-07-02 14:54:32    阅读次数:51
添加到我的小程序提示组件
用于提示用户首次进入小程序时,点击右上角菜单进行【添加到我的小程序】操作 ...
分类:微信   时间:2020-07-02 13:46:14    阅读次数:210
888. Fair Candy Swap
Alice and Bob have candy bars of different sizes: A[i] is the size of the i-th bar of candy that Alice has, and B[j] is the size of the j-th bar of ca ...
分类:其他好文   时间:2020-07-02 10:42:14    阅读次数:53
最长重复子数组
718. 最长重复子数组 思路 这道题类似最长公共子序列,可以使用动态规划来解决。 代码 二维的 /** * 1 <= len(A), len(B) <= 1000 * 0 <= A[i], B[i] < 100 */ class Solution { public int findLength(i ...
分类:编程语言   时间:2020-07-01 23:44:12    阅读次数:83
小程序:wxs(wxs模块)
1、模块 (1)概念 wxs: 脚本语言,不是js语言,结合 wxml,构建出页面的结构,在IOS设备上要比js快 模块: 将一些公共的代码抽离成为一个单独的 js 文件,作为一个模块。 (2)模块的使用 建立公共的逻辑代码块,编写代码后通过module.exports输出代码块:这里面一共有两个模 ...
分类:微信   时间:2020-07-01 20:34:30    阅读次数:114
LoadRunner参数化之九种取值方式
方式介绍 1:Select next row: 选择下一行方法 Sequential 默认 顺序的,按照参数化的数据顺序,从上往下一个一个的来取。 Random 随机取,参数化中的数据,每次随机的从中抽取数据。 Unique 唯一,唯一的向下取值,只能被用一次。 2:Update value on: ...
分类:其他好文   时间:2020-07-01 12:43:59    阅读次数:74
bootstrap 标签页的使用(tab)
<!DOCTYPE html> <html> <head> <title></title> <link rel="stylesheet" type="text/css" href="https://cdn.bootcss.com/twitter-bootstrap/3.3.7/css/bootstr ...
分类:其他好文   时间:2020-07-01 12:34:27    阅读次数:49
java 中的集合接口 Collection
public interface Collection<E> extends Iterable<E> The root interface in the collection hierarchy. A collection represents a group of objects, known a ...
分类:编程语言   时间:2020-07-01 09:41:31    阅读次数:55
恕我直言你可能真的不会java第10篇-集合元素归约
Stream API为我们提供了Stream.reduce用来实现集合元素的归约。reduce函数有三个参数: Identity标识:一个元素,它是归约操作的初始值,如果流为空,则为默认结果。 Accumulator累加器:具有两个参数的函数:归约运算的部分结果和流的下一个元素。 Combiner合 ...
分类:编程语言   时间:2020-07-01 09:26:36    阅读次数:60
7915条   上一页 1 ... 25 26 27 28 29 ... 792 下一页
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!