码迷,mamicode.com
首页 >  
搜索关键字:xtend    ( 2594个结果
React 函数组件传递ref
以前理所当然的认为,只要ref作为props传进去,就可以直接给某个子组件用了,但是实际上不是这样的 const Test = ({ref}) => { return <div ref={ref}> <p>hahahha</p> </div> } class TestWarper extends R ...
分类:编程语言   时间:2020-06-22 02:03:20    阅读次数:257
Flutter命名路由报错-Closure call with mismatched arguments:function 'routes.<anonymous closure>'
【报错描述】 Closure call with mismatched arguments: function 'routes.<anonymous closure>'Receiver: Closure: (dynamic) => ProductPageTried calling: routes.< ...
分类:其他好文   时间:2020-06-21 19:36:59    阅读次数:146
jquery: custom scroll
自定义滚动条实现: <!DOCTYPE html> <html lang="en"> <head> <meta charset="UTF-8"> <meta name="viewport" content="width=device-width, initial-scale=1.0"> <title ...
分类:Web程序   时间:2020-06-21 17:59:50    阅读次数:74
java--Collections
java.util.Coollections 一个工具类,提供了针对java 集合的操作方法;对 List 实现类的排序、翻转、随机排序等操作 1. 排序 void sort(List<T> list) void sort(List<T> list,Comparator<?> c) void rev ...
分类:编程语言   时间:2020-06-20 21:23:41    阅读次数:63
ConcurrentHashMap源码解析-Java7
目录 一.ConcurrentHashMap的模型图 二.源码分析-类定义 2.1 极简ConcurrentHashMap定义 2.2 Segment内部类 2.3 HashEntry内部类 2.4 ConcurrentHashMap的重要常量 三.常用接口源码分析 3.1 ConcurrentHa ...
分类:编程语言   时间:2020-06-19 10:32:53    阅读次数:53
请求参数
public class PackData extends HashMap implements Map{ private static final long serialVersionUID = 1L; Map map = null; HttpServletRequest request; pub ...
分类:其他好文   时间:2020-06-17 23:11:28    阅读次数:59
Spring Batch之批处理实践
这里对Spring Batch 进行批处理实践。 介绍 本文将会讲述SpringBatch 如何搭建并运行起来的。 本教程,将会介绍从磁盘读取文件,并写入MySql 中。 什么是Spring Batch Spring Batch 是Spring的子项目,基于Spring的批处理的框架,通过其可以构建 ...
分类:编程语言   时间:2020-06-17 18:17:56    阅读次数:60
array.array和memoryview
# 如果我们需要一个只包含数字的列表,那么array.array比list更高效,因为数组在背后存的并不是int对象,而是数字的机器翻译,也就是字节表示. # 数组支持所有跟可变序列相关的操作,包括.pop .insert和.extend.另外,数组还提供从文件读取和存入文件的更快的方法,如.fro ...
分类:其他好文   时间:2020-06-17 10:38:12    阅读次数:37
CRM 线索来源 获客方式
CRM 线索来源 获客方式 - 国内版 Bing https://cn.bing.com/search?q=CRM+%E7%BA%BF%E7%B4%A2%E6%9D%A5%E6%BA%90++%E8%8E%B7%E5%AE%A2%E6%96%B9%E5%BC%8F&qs=n&form=QBRE&sp ...
分类:其他好文   时间:2020-06-16 20:17:21    阅读次数:90
ShutdownBroadcastReceiver
package com.android.demo.lileidemo.listener;import android.content.BroadcastReceiver;import android.content.Context;import android.content.Intent;impo ...
分类:其他好文   时间:2020-06-16 15:06:35    阅读次数:55
2594条   上一页 1 ... 13 14 15 16 17 ... 260 下一页
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!