ABAP 正则表达式 ABAP支持正则表达式。 支持正则表达式的语句: 1.FIND,REPLACE语句; 2.Functions:count,count_xxx,contains,find,find_xxx,match,matches,replace,substring,substring_xxx ...
分类:
其他好文 时间:
2020-10-18 16:46:52
阅读次数:
27
1 Scanner sc = new Scanner(System.in); 2 System.out.println("请输入要打印的斐波那契数列的个数"); 3 int count = sc.nextInt(); 4 int x = 1; 5 int y = 1; 6 int z = 0; 7 ...
分类:
其他好文 时间:
2020-10-18 16:45:48
阅读次数:
18
Given an input string s, reverse the order of the words. A word is defined as a sequence of non-space characters. The words in s will be separated by ...
分类:
其他好文 时间:
2020-10-18 10:19:49
阅读次数:
29
CountDownLatch 用于等待其它线程都处于就绪状态: #include <mutex> #include <condition_variable> class CountDownLatch { public: CountDownLatch(uint32_t count) : m_count ...
分类:
编程语言 时间:
2020-10-18 09:24:14
阅读次数:
22
写一个网络爬虫 用C语言来写一个网络爬虫,来获取一个网站上感兴趣的信息,抓取自己需要的一切。 #include<cspider/spider.h>/* 自定义的解析函数,d为获取到的html页面字符串 */voidp(cspider_t *cspider,char*d) {char*get[100] ...
分类:
编程语言 时间:
2020-10-18 09:22:05
阅读次数:
17
1. 创建用于交换分区的文件 如在/swapfile下创建一个8g大小的swap_8g文件 sudo dd if=/dev/zero of=/swapfile/swap_8g bs=1G count=8 2. 设置为交换分区文件: sudo mkswap /swapfile/swap_8g 3.更改 ...
分类:
系统相关 时间:
2020-10-16 10:58:19
阅读次数:
41
flutter是有dart语法开发的,dart语法有哪些特点呢? 1、声明变量的方式: a、使用var来声明,特点:可以声明任何数据类型,但声明后数据类型不能改变, var a = 123;a="123312" 这样的代码应该会报错。 b、明确数据类型 如: String name = "by 小德 ...
分类:
其他好文 时间:
2020-10-16 10:40:22
阅读次数:
19
一、global global关键字用来在函数或其他局部作用域中使用全局变量 1.1 如果局部要对全局变量修改,而不使用global关键字 count = 0 def global_test(): count += 1 print(count) global_test() 会出现如下错误: Unbo ...
分类:
编程语言 时间:
2020-10-13 17:39:54
阅读次数:
27
#① len(str):表示返回该字符串的长度; print(len("cloveryml")) #② str.count(sub,start=0,end=len(str)):表示返回sub在str里面出现的次数,如果start或者end指定则返回指定范围内sub出现的次数 name="clover ...
分类:
其他好文 时间:
2020-10-10 18:01:14
阅读次数:
30
一、Hash表 1. 什么是Hash表 hash函数就是根据key计算出应该存储地址的位置,而哈希表是基于哈希函数建立的一种查找表 2. hash函数设计的考虑因素 计算散列地址所需要的时间(即hash函数本身不要太复杂) 关键字的长度 表长 关键字分布是否均匀,是否有规律可循 设计的hash函数在 ...
分类:
其他好文 时间:
2020-10-07 20:32:22
阅读次数:
19