码迷,mamicode.com
首页 >  
搜索关键字:represent    ( 1045个结果
k6 新的扩展参考开发
内容来自官方文档,主要是一个学习 创建项目 go mod init github.com/k6io/xk6-redis 参考代码 需要push github package redis ? import ( "context" "time" ? "github.com/go-redis/redis/ ...
分类:其他好文   时间:2021-01-16 12:05:41    阅读次数:0
IfcPresentationStyleSelect
ifcprepresentationstyleselect提供了在不同的表示样式之间进行选择以分配给样式化的项。 注:定义根据ISO/CD 10303-46:1992 表示样式选择是多种样式中的一种,对于要设计样式的每种几何表示项都是不同的。 注释类型改编自ISO10303-46中定义的表示样式选择 ...
分类:其他好文   时间:2021-01-02 10:54:43    阅读次数:0
unicode code points and utf-8
原文:http://tutorials.jenkov.com/unicode/utf-8.html#:~:text=UTF%2D8%20is%20a%20byte,represent%20a%20unicode%20code%20point. ____________________________ ...
分类:其他好文   时间:2020-12-14 13:23:31    阅读次数:3
771. Jewels and Stones
package LeetCode_771 /** * 771. Jewels and Stones * https://leetcode.com/problems/jewels-and-stones/ * You're given strings J representing the types o ...
分类:其他好文   时间:2020-12-05 10:48:43    阅读次数:7
SDS 动态字符串库 - Simple Dynamic Strings
摘自:https://www.oschina.net/p/sds?hmsr=aladdin1e1 软件简介 SDS(Simple Dynamic Strings)是一个C语言字符串库,设计中增加了从堆上分配内存的字符串,来扩充有限的libc字符处理的功能,使得: 使用更简便 二进制安全 计算更有效率 ...
分类:其他好文   时间:2020-11-24 12:11:05    阅读次数:7
Java中泛型Class<T>、T与Class<?>、 Object类和Class类、 object.getClass()和Object.class
一.区别 单独的T 代表一个类型(表现形式是一个类名而已) ,而 Class<T>代表这个类型所对应的类(又可以称做类实例、类类型、字节码文件), Class<?>表示类型不确定的类 Class<T>表示T类型的字节码文件,意思是: Class<T> 相当于Class<T> c=T.class,T ...
分类:编程语言   时间:2020-10-24 10:19:32    阅读次数:22
多进程提速
方式一:multiprocessing.Process def worker(procnum, return_dict): '''worker function''' print str(procnum) + ' represent!' return_dict[procnum] = procnum ...
分类:系统相关   时间:2020-10-22 22:46:37    阅读次数:30
C++实现Visitor访问者模式 & 头文件循环包含的问题
桥接模式 定义: “Represent an operation to be performed on the elements of an object structure. Visitor lets you define a new operation without changing the ...
分类:编程语言   时间:2020-09-18 17:19:54    阅读次数:50
HDU6828 Little Rabbit's Equation(简单模拟)
Problem Description Little Rabbit is interested in radix. In a positional numeral system, the radix is the number of unique digits, including the digi ...
分类:其他好文   时间:2020-08-06 20:41:05    阅读次数:67
Python之常用模块----007
Python之常用模块 模块,用一砣代码实现了某个功能的代码集合。 类似于函数式编程和面向过程编程,函数式编程则完成一个功能,其他代码用来调用即可,提供了代码的重用性和代码间的耦合。而对于一个复杂的功能来,可能需要多个函数才能完成(函数又可以在不同的.py文件中),n个 .py 文件组成的代码集合就 ...
分类:编程语言   时间:2020-07-20 00:00:13    阅读次数:120
1045条   上一页 1 2 3 4 ... 105 下一页
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!