码迷,mamicode.com
首页 >  
搜索关键字:python long string    ( 244880个结果
Springboot-微服务-微服务组件之服务管理-eureka-服务的高可用-ribbon
#Springboot-微服务-微服务组件之服务管理-eureka-服务的高可用-ribbon 关键要点 引入相关依赖 在restTemplate 添加@LoadBalanced//开启负载均衡注解 入门使用方式 引入依赖 <dependency> <groupId>org.springframew ...
分类:编程语言   时间:2021-07-19 16:38:13    阅读次数:0
算法学习刷题记录-210717
3768. 字符串删减 - AcWing题库 思路 双指针的练习 C++代码 #include <iostream> #include <cstring> #include <algorithm> using namespace std; int main() { int n; string s; ...
分类:编程语言   时间:2021-07-19 16:34:51    阅读次数:0
选择排序
public static void main(String[] args) { int[] aa = {5, 86, 21, 231, 4, 3, 1, 74}; paixu(aa); printaaaa(aa);}public static void paixu(int[] aa) { for ...
分类:编程语言   时间:2021-07-19 16:29:05    阅读次数:0
FastAPI - most popular API framework in python
FastAPI https://fastapi.tiangolo.com/#performance FastAPI is a modern, fast (high-performance), web framework for building APIs with Python 3.6+ based ...
分类:编程语言   时间:2021-07-16 17:45:01    阅读次数:0
C++ 递归遍历文件并计算MD5
递归遍历文件夹,对比文件md5 首先,需要引用 md5 的相关代码,参考这篇文章,防止链接内容被删除,这里再记录一次: md5.h #ifndef MD5_H #define MD5_H #include <string> #include <fstream> /* Type define */ t ...
分类:编程语言   时间:2021-07-16 17:44:14    阅读次数:0
python 将目录下所有文件夹的绝对路径写到文件中
import os dirlist = os.listdir() #打开文件 fo = open("dirs.txt","w") #遍历 for dir in dirlist: #判断如果是文件夹 if os.path.isdir(dir): #写 file.write(str(os.path.ab ...
分类:编程语言   时间:2021-07-16 17:33:40    阅读次数:0
Python多线程并发时通过线程池限流
Python支持多线程,但是由于GIL的限制并不能无限制的开启子线程。 通过semaphore我们可以控制子线程对于共享资源的访问,即可以阻塞一些子线程直到有空余的semaphore资源,但是并不能实际限制子线程数。 当我们需要开启成千上万个子线程时,很多时候并不希望这些子线程同时执行(可能受限于系 ...
分类:编程语言   时间:2021-07-15 19:01:30    阅读次数:0
消除 if else 判断
1.if..else public int calculate(int a, int b, String operator) { int result = Integer.MIN_VALUE; if ("add".equals(operator)) { result = a + b; } else ...
分类:其他好文   时间:2021-07-15 18:58:38    阅读次数:0
C语言动态分配内存及回收
用malloc和free;类似与C++的new和delete 代码: #include <iostream> #include <string> using namespace std; int main(int argc, char* argv[]) { void* ptr = (void*)ma ...
分类:编程语言   时间:2021-07-15 18:57:44    阅读次数:0
Date对象,JSON对象,自定义对象
<!DOCTYPE html> <html lang="en"> <head> <meta charset="UTF-8"> <title>标题</title> </head> <body> <script> /* 自定义对象({}),可以看成是python中的字典,但是js中的自定义对象要比pyt ...
分类:Web程序   时间:2021-07-14 18:51:37    阅读次数:0
244880条   上一页 1 2 3 4 5 6 ... 24488 下一页
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!