重载构成的条件:函数的参数类型,参数个数不同,才能构成函数的重载 函数重载分为两种情况: 1 .(1)void output(); (2)int output(); 2 .(1)void output(int a,int b=5); (2)int output(int a); this 指针 1. ...
分类:
编程语言 时间:
2018-10-01 20:42:17
阅读次数:
184
#include<iostream.h>class Point{public: int x; int y; Point() { x=0; y=0; }//构造函数是用来创建函数本身,那么,怎么样把他利用的内存给回收呢?--析构函数//析构函数实际上是构造函数的取反,//当对象生命周期快要结束时,会调 ...
分类:
编程语言 时间:
2018-10-01 19:54:05
阅读次数:
180
Eclipse同时注释多行①:ctrl+/或 ②:ctrl+shift+/ ; Visual studio先按ctrl+k 再按 ctrl+c 2.在VC++6.0中需要自己设置快捷键,设置方法链接如下https://blog.csdn.net/yuanziwoxin/article/details ...
分类:
编程语言 时间:
2018-10-01 18:23:14
阅读次数:
189
1.提示“This application requires Visual Studio 2015 Redistributable” 下载vc_redist.x86安装即可。 下载链接:https://download.microsoft.com/download/6/D/F/6DF3FF94-F7 ...
分类:
数据库 时间:
2018-09-30 12:49:55
阅读次数:
559
PC端车牌识别——加密锁,车牌识别SDK开发包,开发文档 PC端车牌识别sdk是专为对车牌识别有需求的用户,有软件产品开发的客户设计的。采用TH-OCR算法,通过计算机视觉和图像处理算法以及神经网络算法而研发出来的产品。适用于城市交通管理、超速监控、公路计费、停车场管理、被盗车辆侦破等应用开发。 P ...
分类:
编程语言 时间:
2018-09-29 19:21:21
阅读次数:
208
MP review: 音标(Phonetic symbol) [?] lit adj. 照亮的,点着的(light的过去式及过去分词)n. (Lit)人名;(瑞典)利特;(老)李 [?] good put [?] up cut hunt [?] box fox [e] any bed [æ] cat ...
分类:
其他好文 时间:
2018-09-28 22:59:47
阅读次数:
189
Vocabulary focus 核心词汇 She is a receptionist. She answers the phone. She is a cashier She counts money He is a mechanic He fixes cars He is a custodian ...
分类:
其他好文 时间:
2018-09-27 00:05:57
阅读次数:
212
Words cashier # 收银员 a cashier counts money 收钱 custodian # 清洁工 a custodian cleans buildings 打扫清洁 mechanic # 机械师 a mechanic repairs cars 修车 receptionist ...
分类:
其他好文 时间:
2018-09-26 01:16:29
阅读次数:
164
class Solution { private: vector<int> vc; public: Solution(vector<int> nums) { vc = nums; } int pick(int target) { vector<int> tmp; int size = 0; for ...
分类:
编程语言 时间:
2018-09-26 01:15:12
阅读次数:
125
关于UNICODE版本的开发 代码转换方案 概述 在VC6.0中,相应的有一些宏来代替ANSI的函数、宏或数据类型,这些宏在ANSI编译条件中处理字符串为单字节,而在UNICODE中处理字符串为双字节,请在编写程序中请使用这些宏。 数据类型 表-1.1中黑体字部分为替代数据类型的宏。 Generic... ...
分类:
编程语言 时间:
2018-09-25 14:14:29
阅读次数:
745