Posted on 2018年6月28日 by laixintao 1 Comment Python3.7 加入了一个新的 module:dataclasses。可以简单的理解成“支持默认值、可以修改的tuple”( “mutable namedtuples with defaults”)。其实没什 ...
分类:
编程语言 时间:
2018-07-20 14:04:48
阅读次数:
214
本节内容:1、查([])2 、增(append,insert)3、 改(重新赋值)4 、删(remove,del,pop)5、 其他操作 什么是列表: 列表(list)是Python以及其他语言中最常用到的数据结构之一。Python使用使用中括号 [ ] 来解析列表。列表是可变的(mutable)— ...
分类:
编程语言 时间:
2018-07-19 22:55:07
阅读次数:
268
1 #import "ViewController.h" 2 3 @interface ViewController () 4 5 @end 6 7 @implementation ViewController 8 9 -(void)touchesBegan:(NSSet *)touches wit... ...
分类:
移动开发 时间:
2018-07-11 14:43:36
阅读次数:
264
1. 两对函数 2. 闭包与循环调用 今天在开发过程中,想对一个验证失败的循环列表中的元素进行背景色标红,然后再2秒之后,取消标红功能,只保留边框为红色。使用的时候遇到一个提示:“mutable variable accessible from closure”,大概意思就是在setTimeout参 ...
分类:
编程语言 时间:
2018-07-10 21:27:00
阅读次数:
252
import scala.collection.mutable.ArrayBuffer /** * scala 中内部类的使用 */ class Classes { class Stu(name:String , age:Int) {} val stus = new ArrayBuffer[Stu]... ...
分类:
其他好文 时间:
2018-07-09 00:02:23
阅读次数:
224
iOS 苹果的内购 一、介绍 苹果规定,凡是虚拟的物品(例如:QQ音乐的乐币)进行交易时,都必须走苹果的内购通道,苹果要收取大约30%的抽成,所以不允许接入第三方的支付方式(微信、支付宝等),当然开发者可以设置后门,在审核时避开审核人员。这个是有风险的,一旦发现,app会被立即下架,还是老老实实接入 ...
分类:
移动开发 时间:
2018-06-28 13:57:51
阅读次数:
2119
UILabel *valueL = [JAppViewTools getLabel:CGRectMake(JFWidth(15), CGRectGetMaxY(proName.frame)+JFWidth(12), KSCreenWidth-JFWidth(30), JFWidth(14)) :JT... ...
分类:
移动开发 时间:
2018-06-25 16:53:09
阅读次数:
533
C++11中的Lambda表达式用于定义并创建匿名的函数对象,以简化编程工作。首先看一下Lambda表达式的基本构成: [函数对象参数](操作符重载函数参数)mutable或exception ->返回值{函数体} ① 函数对象参数; [],标识一个Lambda的开始,这部分必须存在,不能省略。函数 ...
分类:
其他好文 时间:
2018-06-23 00:02:00
阅读次数:
168
C++ 11中的Lambda表达式用于定义并创建匿名的函数对象,以简化编程工作。 Lambda的语法形式如下: [函数对象参数] (操作符重载函数参数) mutable或exception声明 -> 返回值类型 {函数体} 例子 1 auto add= [](int a, int b)->int{ ...
分类:
其他好文 时间:
2018-06-21 23:44:04
阅读次数:
200
[抄题]: Given an integer array nums, find the sum of the elements between indices i and j (i ≤ j), inclusive. The update(i, val) function modifies nums ...
分类:
其他好文 时间:
2018-06-16 12:02:08
阅读次数:
132