上一节我们把服务路由改由客户端传入了,但是每次都要在客户端这里写命名空间啥的比较麻烦,这应该在写方法的时候就应该规定好。这时候特性就派上用场了。 想要了解特性的使用的请参考这篇文章:【.net 深呼吸】自定义特性(Attribute)的实现与检索方法 1、首先添加两个特性类,一个用于接口,一个用于方 ...
分类:
其他好文 时间:
2021-04-05 12:19:02
阅读次数:
0
//字符串转数组 - (id)toArrayOrNSDictionary:(NSString *)jsonData{ if (jsonData != nil) { NSData* data = [jsonData dataUsingEncoding:NSUTF8StringEncoding]; id ...
分类:
移动开发 时间:
2021-04-05 11:49:10
阅读次数:
0
python的数据类型有:数字(int)、浮点(float)、字符串(str),列表(list)、元组(tuple)、字典(dict)、集合(set) 一般通过以下方法进行判断: 1、isinstance(参数1,参数2) 描述:该函数用来判断一个变量(参数1)是否是已知的变量类型(参数2) 类似于 ...
分类:
编程语言 时间:
2021-04-01 13:44:37
阅读次数:
0
这几天接触到的pgame的模块主要有用于控制显示的display模块,用于图像控制的surface模块、用户画出各种图形形状的draw模块以及对surface对象进行操作,比如翻转、剪裁等操作的transform模块、pygame中内嵌的矩形对象,这里不同于画图中的形状,更重要的是rect对象可以存 ...
分类:
其他好文 时间:
2021-04-01 13:29:52
阅读次数:
0
字典 字典是 "键值对" 的无序可变序列,字典中的每个元素都是一个 "键值对" , 包含:'键对象' 和 '值对象'。可以通过 '键对象' 实现快速获取、删除、更新对应的 '值对象'。 列表中我们通过 '下表数字'找到对应的对象。字典中通过 '键对象'找到对应的 '值对象'。 '键' 是任意不可变数 ...
分类:
其他好文 时间:
2021-03-31 12:13:54
阅读次数:
0
使用回归法选股, 和之前选取的因子是一样的 def regression_select(context,bar_dict): # 查询因子数据 q=query(fundamentals.eod_derivative_indicator.pe_ratio, fundamentals.eod_deriv ...
分类:
其他好文 时间:
2021-03-26 15:19:28
阅读次数:
0
class Solution { public boolean wordBreak(String s, List<String> wordDict) { return isContain(s, wordDict); } Map<String,Boolean> map = new HashMap<>( ...
分类:
其他好文 时间:
2021-03-17 14:50:42
阅读次数:
0
# 1.可迭代对象# 能被for循环遍历取值的数据类型:list/str/tuple/dict/set# 遍历(迭代):可迭代对象使用for.. in..的循环语法从其中依次拿到数据使用的过程 # for i in 可迭代对象:# li = [1, 2, 3]# for i in li: # 遍历取 ...
分类:
其他好文 时间:
2021-03-16 12:00:59
阅读次数:
0
Given a string s and a list of strings dict, you need to add a closed pair of bold tag <b> and </b> to wrap the substrings in s that exist in dict. If ...
分类:
其他好文 时间:
2021-03-15 10:29:48
阅读次数:
0
一、基础数据类型 数值(int、float) 序列(list、str、tuple) 散列(set、dict) 可迭代对象(序列、散列) 二、命名元组 from collections import namedtuple student = namedtuple('Students', ('name' ...
分类:
其他好文 时间:
2021-03-10 13:26:57
阅读次数:
0