码迷,mamicode.com
首页 >  
搜索关键字:returns    ( 2350个结果
自定义loader基础知识
参考 :译文 编写一个loader https://webpack.github.io/docs/loaders.html 按照loader的返回值可以分为两种: 最左loader:这种loader会返回字符串描述的js模块代码,已经是loader的最终处理结果了,这样的字符串会被添加到webpac ...
分类:其他好文   时间:2017-12-28 19:44:09    阅读次数:170
scala-Future和Promise
首先说明同步与异步,阻塞与非阻塞的问题: Asynchronous vs. Synchronous A method call is considered synchronous if the caller cannot make progress until the method returns ...
分类:其他好文   时间:2017-12-24 14:41:19    阅读次数:183
C#产生随机数
/// <summary> /// 随机数据 获取 /// </summary> /// <param name="max"></param> /// <param name="takeCount"></param> /// <returns> 使用 random 快速获取会发现有很多重复的数据,造 ...
分类:Windows程序   时间:2017-12-23 19:02:52    阅读次数:231
numpy 使用详解
numpy.arange([start, ]stop, [step, ]dtype=None) 返回数值均匀分布的数组 numpy.reshape(a, newshape, order='C') ndarray.reshape(shape, order='C') 返回形状调整后的数组,原数组不变 n ...
分类:其他好文   时间:2017-12-22 20:52:13    阅读次数:173
Enum toString
Returns the name of this enum constant,as contained in the declaratioin.This method may be overridden,though it typically isn't necessary or desirable ...
分类:编程语言   时间:2017-12-22 16:37:33    阅读次数:152
java集合类学习笔记之LinkedHashMap
1、简述 LinkedHashMap是HashMap的子类,他们最大的不同是,HashMap内部维护的是一个单向的链表数组,而LinkedHashMap内部维护的是一个双向的链表数组。HashMap是无序的,LinkedHashMap可以根据访问顺序或者插入顺序进行排序(默认是根据插入顺序的,当设置 ...
分类:编程语言   时间:2017-12-21 21:44:12    阅读次数:268
C#进制转换实现
/// <summary> /// 十进制转换为二进制 /// </summary> /// <param name="x"></param> /// <returns></returns> public static string DecToBin(string x) { string z = n ...
分类:Windows程序   时间:2017-12-20 20:09:45    阅读次数:263
SQL SERVER 获取拼音简称的函数
函数:/*创建取拼音首字母函数*/ create function [dbo].[fn_ChineseToSpell](@strChinese varchar(500)='') returns varchar(500) as begin /*函数实现开始*/ declare @strLen int,... ...
分类:数据库   时间:2017-12-20 13:30:48    阅读次数:269
C#7.0新特性
前言 微软昨天发布了新的VS 2017 ..随之而来的还有很多很多东西... .NET新版本 ASP.NET新版本...等等..太多..实在没消化.. 分享一下其实2016年12月就已经公布了的C#7.0的新特性吧,虽然很早就出来了,但咱这IDE不支持啊.. 不过在昨天的VS2017中已经完美可以支 ...
分类:Windows程序   时间:2017-12-19 19:52:50    阅读次数:341
053-9
Which statement describes the information returned by the DBMS_SPACE.SPACE_USAGE procedure for LOB space usage?A. It returns space usage of only Basic ...
分类:其他好文   时间:2017-12-19 01:26:49    阅读次数:162
2350条   上一页 1 ... 79 80 81 82 83 ... 235 下一页
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!