上一页 1 2 3 4 5 6 7 8 9 10 ··· 12 下一页
摘要: c++ 在class A的构造函数中初始化另一个类的对象(调用B::B())时报错: error: no matching function for call to 'B:B()' 1. 现象 看如下代码: class B, 构造函数接受一个int参数i_b, 并赋值给this->b, #inclu 阅读全文
posted @ 2022-06-04 15:24 编程驴子 阅读(964) 评论(0) 推荐(0) 编辑
摘要: #读写文件 #include <fstream> #include <iostream> #include <string> #include <unistd.h> //使用access和F_OK int main() { //读文件 std::string ifile_name= "test.tx 阅读全文
posted @ 2022-06-02 14:31 编程驴子 阅读(131) 评论(0) 推荐(0) 编辑
摘要: c++标准库没有提供专门的日期类型, 而是继承了c语言用于日期和时间的结构和函数. 需要c++中引入头文件. 关键字 | 解释 | UTC | 协调世界时 Calendar Time| 日历时间 epoch | 时间点 clock tick | 时钟计时单元 关于UTC简称: 英文(CUT, Coo 阅读全文
posted @ 2022-06-02 14:25 编程驴子 阅读(118) 评论(0) 推荐(0) 编辑
摘要: #格式化字符串 c++格式化字符串做的挺烂, 还是用c的snprintf吧. snprintf可以认为是sprintf的升级版, 多了一个控制字符串长度的参数. 语法 //snprintf语法: // int snprintf(char *str, int n, char *format[, arg 阅读全文
posted @ 2022-06-02 14:23 编程驴子 阅读(1790) 评论(0) 推荐(0) 编辑
摘要: 语法: std::regex //pattern std::regex_match //对string用pattern进行匹配, 从头匹配到尾 std::match_results //捕获匹配的内容 代码 #include <iostream> #include <regex> int main( 阅读全文
posted @ 2022-05-29 14:13 编程驴子 阅读(773) 评论(0) 推荐(0) 编辑
摘要: 代码 import sys import pygame pygame.init() screen = pygame.display.set_mode((600, 480), 0, 32) pygame.display.set_caption('my game') screen.fill('white 阅读全文
posted @ 2022-05-24 16:18 编程驴子 阅读(286) 评论(0) 推荐(0) 编辑
摘要: 代码 import sys import pygame pygame.init() screen = pygame.display.set_mode((600, 480), 0, 32) pygame.display.set_caption('my game') screen.fill('white 阅读全文
posted @ 2022-05-24 15:57 编程驴子 阅读(138) 评论(0) 推荐(0) 编辑
摘要: 本学习笔记主要内容来源: http://m.biancheng.net/pygame/ 代码: import sys import pygame #初始化pygame pygame.init() #创建surface对象, 设置窗口, 大小(600, 480) screen = pygame.dis 阅读全文
posted @ 2022-05-24 15:08 编程驴子 阅读(63) 评论(0) 推荐(0) 编辑
摘要: [TOC] # 1. 拼音->键位 序号|拼音|键位 | | 1 |zh | v 2 |ch | i 3 |sh | u . |. |. 4 |ai | l 5 |ei | z 6 |ui | v . |. |. 7 |ao | k 8 |ou | b 9 |iu | q . |. |. 10 |i 阅读全文
posted @ 2022-05-02 10:52 编程驴子 阅读(1672) 评论(0) 推荐(0) 编辑
摘要: python操作ini文件 1. ini文件是什么 [本节内容来自百度百科] .ini 文件是Initialization File的缩写,即初始化文件, 是windows的系统配置文件所采用的存储格式,统管windows的各项配置,一般用户就用windows提供的各项图形化管理界面就可实现相同的配 阅读全文
posted @ 2022-04-20 11:18 编程驴子 阅读(302) 评论(0) 推荐(0) 编辑
上一页 1 2 3 4 5 6 7 8 9 10 ··· 12 下一页