码迷,mamicode.com
首页 >  
搜索关键字:generator functions    ( 4426个结果
mybaties longtext 类型不能映射到自动生成的文件
假设数据库里有 fun_detail 这样一个字段。 使用 MyBatis Generator 生成的 XXExample 文件,发现没有 fun_detail 这个字段。 需要加一行: <columnOverride column="fun_detail" javaType="java.lang. ...
分类:其他好文   时间:2020-08-06 20:42:40    阅读次数:58
逆向工程
1、简介 MBG:Mybatis Generator(代码生成器) 文档http://mybatis.org/generator/configreference/xmlconfig.html 逆向工程: 根据table,逆向分析数据表,自动生成javaBean -- dao -- dao.xml - ...
分类:其他好文   时间:2020-08-04 11:26:36    阅读次数:76
Mybatis逆向工程
1、在pom.xml中添加 <dependency> <groupId>org.mybatis.generator</groupId> <artifactId>mybatis-generator-core</artifactId> <version>1.3.5</version> </depende ...
分类:其他好文   时间:2020-07-29 10:17:08    阅读次数:63
636. Exclusive Time of Functions
package LeetCode_636 import java.util.* /** * 636. Exclusive Time of Functions * https://leetcode.com/problems/exclusive-time-of-functions/description ...
分类:其他好文   时间:2020-07-29 10:01:26    阅读次数:59
【Python】迭代器和生成器的个人理解,再讲一讲协程
在认识yield的时候,网上很多文章都是说这个是个生成器,但是我并不知道这个是用来做什么的,所以概念很快就忘记了,后面读了几个文章以后感觉茅塞顿开。我就接介绍一下。 有一篇文章提到,可以把yield看成是生成器的return的一部分,首先一个return的作用是在程序中返回某个值,返回之后程序就不再 ...
分类:编程语言   时间:2020-07-28 14:38:10    阅读次数:78
ES6 Generator与C#迭代器
ES6 Generator: 利用阮大神的书中描述的: 形式上,Generator 函数是一个普通函数,但是有两个特征。一是,function关键字与函数名之间有一个星号;二是,函数体内部使用yield表达式,定义不同的内部状态(yield在英语里的意思就是“产出”)。 其实简单来说就是通过各种状态 ...
分类:Windows程序   时间:2020-07-27 16:04:48    阅读次数:96
es6 Generator函数
<script type="text/javascript"> function* myGenerator(){ console.log('业务逻辑A') let result=yield 'hello' console.log(result) console.log('业务逻辑B') yield ...
分类:其他好文   时间:2020-07-26 15:13:08    阅读次数:51
Generator 与 Promise 一起使用 简单实现 await
function* bar() { const result = yield new Promise((resolve, reject) => { setTimeout(() => { resolve('Hello Generator'); }, 3000); }); console.log(res ...
分类:其他好文   时间:2020-07-23 23:26:40    阅读次数:118
文本处理工具和正则表达式练习
1、在vim中设置tab缩进为4个字符setautoindent或setai2、复制/etc/rc.d/init.d/functions文件至/tmp目录,替换/tmp/functions文件中的/etc/syscon?g/init为/var/logcp/etc/rc.d/init.d/functions/tmpvim/tmp/functions%s@/etc/sysconfig/init@/va
分类:其他好文   时间:2020-07-23 22:52:48    阅读次数:76
compare
// Package subtle implements functions that are often useful in cryptographic// code but require careful thought to use correctly.package subtle// Con ...
分类:其他好文   时间:2020-07-22 20:15:24    阅读次数:85
4426条   上一页 1 ... 7 8 9 10 11 ... 443 下一页
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!