码迷,mamicode.com
首页 >  
搜索关键字:returns    ( 2350个结果
MySQL-5.7 高阶语法及流程控制
1.标签语句 标签label可以加在begin...end语句以及loop,repeat和while语句上 语句中通过iterate和leave来控制流程,iterate表示返回指定标签位置,leave表示跳出标签 实例: 2.Declare语句 语法: Declare语句通常声明本地变量、游标、条 ...
分类:数据库   时间:2017-12-11 18:41:55    阅读次数:231
Week 5: Object Oriented Programming 9. Classes and Inheritance Exercise: int set
Your task is to define the following two methods for the intSet class: Define an intersect method that returns a new intSet containing elements that a ...
分类:其他好文   时间:2017-12-11 14:18:19    阅读次数:132
文件方法
C# 获取指定目录下所有文件信息、移动目录、拷贝目录 /// <summary> /// 获取目录下的所有文件夹和文件的path /// </summary> /// <param name="path"></param> /// <returns></returns> public static ...
分类:其他好文   时间:2017-12-11 14:02:16    阅读次数:149
『TensorFlow』简单的数学计算&张量操作
tf.pow() tf.sqrt() tf.add() tf.add_n() 几种加法 tf.subtract() :减法 tf.matmul() :矩阵乘法 点乘&矩阵乘 tf.reduce_sum() :求和 tf.reduce_mean():求均值,直接给源码定义中的注释 tf.cast(): ...
分类:其他好文   时间:2017-12-10 18:56:59    阅读次数:1151
the arithmetic sequence of integers
Provide an implementation of the following interface: public interface Powers extends Iterator { /* Returns the next integer a in the arithmetic seque... ...
分类:其他好文   时间:2017-12-10 11:13:54    阅读次数:160
C# 使用Task实现任务超时,多任务一起执行
简介:充分使用Task的异步功能代码实现:1.实现了任务超时 退出任务 2.多个任务一起执行 /// <summary> ///做事 需要 ms秒 才能完成 /// </summary> /// <param name="time"></param> /// <returns></returns> ...
分类:Windows程序   时间:2017-12-09 20:52:35    阅读次数:784
HashMap底层实现原理
一、数据结构 HashMap中的数据结构是数组+单链表的组合,以键值对(key-value)的形式存储元素的,通过put()和get()方法储存和获取对象。 (方块表示Entry对象,横排表示数组table[],纵排表示哈希桶bucket【实际上是一个由Entry组成的链表,新加入的Entry放在链 ...
分类:其他好文   时间:2017-12-08 22:53:32    阅读次数:350
通过按钮截取当前网页成png或jpeg格式的图片并保存
<html xmlns="http://www.w3.org/1999/xhtml"><head> <script type="text/javascript" src="jquery-1.7.2.min.js"/> <script type="text/javascript" src="html2 ...
分类:Web程序   时间:2017-12-08 14:11:33    阅读次数:199
C# 根据twitter的snowflake算法生成唯一ID
C# 版算法: Java 版算法: 留个脚印,备用! ...
分类:编程语言   时间:2017-12-08 10:31:03    阅读次数:209
sql生成随机字符串
--1、借助newid() go --创建视图(因为在函数中无法直接使用newid()) create view vnewid as select newid() N'MacoId'; go --创建函数 create function getrandstr(@n int) returns varc... ...
分类:数据库   时间:2017-12-07 10:45:17    阅读次数:301
2350条   上一页 1 ... 81 82 83 84 85 ... 235 下一页
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!