上一页 1 2 3 4 5 6 7 8 9 ··· 11 下一页
摘要: 工程目录: mywidget.h: mywidget.cpp: 阅读全文
posted @ 2019-07-05 16:39 Mr_Song_D 阅读(952) 评论(0) 推荐(0) 编辑
摘要: 工程文件: widget.cpp: 当使用QImage 的时候, mywidget.cpp: 阅读全文
posted @ 2019-07-05 12:08 Mr_Song_D 阅读(289) 评论(0) 推荐(0) 编辑
摘要: 工程文件: mywidget.h: mywidget.cpp: 阅读全文
posted @ 2019-07-05 11:41 Mr_Song_D 阅读(666) 评论(0) 推荐(0) 编辑
摘要: 项目的工程文件结构图: mywidget.h: main.cpp: mywidget.cpp: UI: 阅读全文
posted @ 2019-07-05 11:05 Mr_Song_D 阅读(1716) 评论(0) 推荐(0) 编辑
摘要: 1、考虑函数原型void test (int a ,int b = 7,char z = '#'),下面的函数调用中,属于不合法的调用的是() A test (5) B test (5, 8) C test (6, '#') D test (0, 0, '#') 答案: C 解析: 1.在具有多个参 阅读全文
posted @ 2019-07-01 11:37 Mr_Song_D 阅读(663) 评论(0) 推荐(0) 编辑
摘要: 1、以下标识符中不全是保留字的是A case for int B default then while C bool class long D goto return char 答案: B 解释:首先说明一下保留字的概念:指在高级语言中已经定义过的字使用者不能再将这些字作为变量名或者过程名使用。 如 阅读全文
posted @ 2019-06-30 08:55 Mr_Song_D 阅读(238) 评论(0) 推荐(0) 编辑
摘要: 1、执行下列的语句后,输出的结果为: 答案: 输出为 **** 解析:这题的坑是int是有符号数,如果将int改为unsigned int,结果就变了; 2、下列哪种STL容器中的对象是连续存储的; A list B vector C map D set 答案:为B 解析:首先:只有deque 和v 阅读全文
posted @ 2019-06-29 09:25 Mr_Song_D 阅读(152) 评论(0) 推荐(0) 编辑
摘要: // ConsoleApplication1.cpp : 此文件包含 "main" 函数。程序执行将在此处开始并结束。 // #include "pch.h" #include #include #include using namespace std; int main() { // //std::cout words;//初始化 //string str; ... 阅读全文
posted @ 2019-06-25 11:03 Mr_Song_D 阅读(1579) 评论(0) 推荐(0) 编辑
摘要: 画图程序: 阅读全文
posted @ 2019-06-24 21:54 Mr_Song_D 阅读(245) 评论(0) 推荐(0) 编辑
摘要: #include #include #define uchar unsigned char #define uint unsigned int sbit DQ=P2^2; uint wendu; sbit sce = P1^3; //片选 sbit res = P1^4; //复位,0复位 sbit dc = P1^2; //1写数据,0写指令 sbit sdi... 阅读全文
posted @ 2019-06-24 21:50 Mr_Song_D 阅读(340) 评论(0) 推荐(0) 编辑
上一页 1 2 3 4 5 6 7 8 9 ··· 11 下一页