码迷,mamicode.com
首页 >  
搜索关键字:内存管理 alloc retain re    ( 22932个结果
#工作小妙招#如何批量创建文件夹
方法一:cmd脚本 md 文件名+空格+文件名+空格+文件名 如md 1 2 3 保存为bat 如下图 方法二:python 脚本 如上为单个文件创建成功,既然用到python,肯定是想创建多个,新增如下代码 具体代码如下 import re def mkdir(path): # 引入模块 impo ...
分类:其他好文   时间:2021-04-27 15:10:37    阅读次数:0
Egret的一些性能优化总结整理
Egret引擎本身没有任何内存管理策略 这篇文章 非常给力 https://blog.csdn.net/linguifa/article/details/109861434https://blog.csdn.net/shirln/article/details/98210001 https://bl ...
分类:其他好文   时间:2021-04-27 15:09:31    阅读次数:0
电商 Python 访客Excel合并2
import pandas as pd import os import re path = "./files/" files = os.listdir(path) # 用于存放Excel,里面的每个元素类型为:pandas.core.frame.DataFrame list_excel = [] ...
分类:编程语言   时间:2021-04-27 14:43:38    阅读次数:0
一个游戏活动的代码
运行环境python3.7 #coding=utf-8 import requests import time import json import re import sqlite3 url=[] for i in open("AURL.txt"): url.append(i) yaoqing=u ...
分类:其他好文   时间:2021-04-27 14:10:35    阅读次数:0
k8s安装常用软件的yaml文件
参考网址:https://www.bejson.com (网站文件部分有坑,需要擦亮眼睛) nginx k8s版本:v1.20 apiVersion: apps/v1 kind: Deployment metadata: name: my-nginx namespace: test spec: re ...
分类:其他好文   时间:2021-04-26 14:08:07    阅读次数:0
muduo 库解析之十一:Thread
线程 创建线程 #include <pthread.h> int pthread_create(pthread_t *restrict thread,const pthread_attr_t *restrict attr,void *(*start_routine)(void*), void *re ...
分类:其他好文   时间:2021-04-26 13:53:31    阅读次数:0
jinja2的简单使用
后端代码 from jinja2 import Template def index(): with open('./index.html', 'r', encoding='utf-8') as fp: template = Template(fp.read()) ret = template.re ...
分类:其他好文   时间:2021-04-26 13:08:43    阅读次数:0
Python - 正则表达式
1 """ 2 正则表达式:regular expression 3 4 本质: 可看成一个模板,按照这个模板规则去匹配 5 6 是一个比较强大的字符串处理工具 7 8 应用场景: 9 1》表单验证 10 2》爬虫 11 3》处理文本和数据 12 13 导入模块:re 14 15 match() 匹 ...
分类:编程语言   时间:2021-04-24 13:40:39    阅读次数:0
__cxa_demangle
typeid操作符可以用来获取一个类型/表达式的名称: #include <iostream> #include <typeinfo> using namespace std; int main() { std::cout << typeid(int).name() << std::endl; re ...
分类:其他好文   时间:2021-04-23 12:05:50    阅读次数:0
git
There is no tracking information for the current branch. Please specify which branch you want to merge with. See git-pull(1) for details. git pull <re ...
分类:其他好文   时间:2021-04-22 15:28:20    阅读次数:0
22932条   上一页 1 ... 6 7 8 9 10 ... 2294 下一页
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!