C++函数默认参数(转)
在代码中使用到了函数的默认参数,在函数的定义和实现中都填写的默认参数,结果出现了错误:
代码:
#ifndef FIRSTPAGE_H
#define FIRSTPAGE_H #include <QWizardPage>
#include "ui_firstdialog.h" class FirstPage : public Ui::FirstDialog, public QWizardPage
{
public:
FirstPage(QWidget *parent = );
}; #endif // FIRSTPAGE_H
#include "fifthpage.h" FifthPage::FifthPage(QWidget *parent = ) :
QWizardPage(parent)
{
}
当去掉了实现文件中的默认参数值时,通过了编译,于是就考虑是不是因为同时在定义文件中和实现文件中都填写了默认参数造成了这个错误。在网上搜到一篇讲的比较详细的文章: 函数声明和函数定义中的默认参数浅析
默认参数是存在于函数的声明中,还是函数的定义中呢?
- #include <iostream>
- #include <tchar.h>
- using namespace std;
- void SetHeight(double dHeight = 183.5);
- int _tmain(int argc, TCHAR* argv[], TCHAR* envp[])
- {
- SetHeight(181.5);
- return 1;
- }
- void SetHeight(double dHeight = 183.5)
- {
- cout << _T("身高为:") << dHeight << endl;
- }
- #include <iostream>
- #include <tchar.h>
- using namespace std;
- void SetHeight(double dHeight = 183.5);
- void SetHeight(double dHeight = 183.5)
- {
- cout << _T("身高为:") << dHeight << endl;
- }
- int _tmain(int argc, TCHAR* argv[], TCHAR* envp[])
- {
- SetHeight(181.5);
- return 1;
- }
- #include <iostream>
- #include <tchar.h>
- using namespace std;
- void SetHeight(double dHeight = 183.5);
- int _tmain(int argc, TCHAR* argv[], TCHAR* envp[])
- {
- SetHeight();
- return 1;
- }
- void SetHeight(double dHeight)
- {
- cout << _T("身高为:") << dHeight << endl;
- }
- #include <iostream>
- #include <tchar.h>
- using namespace std;
- void SetHeight(double dHeight);
- void SetHeight(double dHeight = 183.5)
- {
- cout << _T("身高为:") << dHeight << endl;
- }
- int _tmain(int argc, TCHAR* argv[], TCHAR* envp[])
- {
- SetHeight();
- return 1;
- }
- #include <iostream>
- #include <tchar.h>
- using namespace std;
- void SetHeight(double dHeight = 183.5);
- void SetHeight(double dHeight)
- {
- cout << _T("身高为:") << dHeight << endl;
- }
- int _tmain(int argc, TCHAR* argv[], TCHAR* envp[])
- {
- SetHeight();
- return 1;
- }
- #include <iostream>
- #include <tchar.h>
- using namespace std;
- void SetHeight(double dHeight);
- int _tmain(int argc, TCHAR* argv[], TCHAR* envp[])
- {
- SetHeight();
- return 1;
- }
- void SetHeight(double dHeight = 183.5)
- {
- cout << _T("身高为:") << dHeight << endl;
- }
- // Head.h
- #pragma once
- #include <tchar.h>
- #include <iostream>
- using namespace std;
- void SetHeight(double dHeight = 183.5);
- //Body.cpp
- #include "Head.h"
- void SetHeight(double dHeight)
- {
- cout << _T("身高为:") << dHeight << endl;
- }
- //Main.cpp
- #include "Head.h"
- int _tmain(int argc, TCHAR* argv[], TCHAR* envp[])
- {
- SetHeight();
- return 1;
- }
- // Head.h
- #pragma once
- #include <tchar.h>
- #include <iostream>
- using namespace std;
- void SetHeight(double dHeight);
- //Body.cpp
- #include "Head.h"
- void SetHeight(double dHeight = 183.5)
- {
- cout << _T("身高为:") << dHeight << endl;
- }
- //Main.cpp
- #include "Head.h"
- int _tmain(int argc, TCHAR* argv[], TCHAR* envp[])
- {
- SetHeight();
- return 1;
- }
- // Head.h
- #pragma once
- #include <tchar.h>
- #include <iostream>
- using namespace std;
- void SetHeight(double dHeight);
- //Body.cpp
- #include "Head.h"
- void SetHeight(double dHeight = 183.5)
- {
- cout << _T("身高为:") << dHeight << endl;
- }
- int _tmain(int argc, TCHAR* argv[], TCHAR* envp[])
- {
- SetHeight();
- return 1;
- }
C++函数默认参数(转)的更多相关文章
- C++函数重载遇到了函数默认参数情况
一.C++中的函数重载 什么是函数重载? 我的理解是: (1)用一个函数名定义不同的函数: (2)函数名和不同参数搭配时函数会有不同的含义: 举例说明: #include <stdio.h> ...
- 如何在ES5与ES6环境下处理函数默认参数
函数默认值是一个很提高鲁棒性的东西(就是让程序更健壮)MDN关于函数默认参数的描述:函数默认参数允许在没有值或undefined被传入时使用默认形参. ES5 使用逻辑或||来实现 众所周知,在ES5 ...
- 【转】Python函数默认参数陷阱
[转]Python函数默认参数陷阱 阅读目录 可变对象与不可变对象 函数默认参数陷阱 默认参数原理 避免 修饰器方法 扩展 参考 请看如下一段程序: def extend_list(v, li=[]) ...
- Python面试题目之Python函数默认参数陷阱
请看如下一段程序: def extend_list(v, li=[]): li.append(v) return li list1 = extend_list(10) list2 = extend_l ...
- Python进阶-函数默认参数
Python进阶-函数默认参数 写在前面 如非特别说明,下文均基于Python3 一.默认参数 python为了简化函数的调用,提供了默认参数机制: def pow(x, n = 2): r = 1 ...
- ES6函数默认参数(Default Parameters)
语言更新时每一个新增的特性都是从千百万开发者需求里提取过来的,规范采用后能减少程序员的痛苦,带来便捷. 我们经常会这么写 function calc(x, y) { x = x || 0; y = y ...
- 【matlab】设定函数默认参数
C++/java/python系列的语言,函数可以有默认值,通常类似如下的形式: funtion_name (param1, param2=default_value, ...) 到了matlab下发 ...
- ES6新特性(函数默认参数,箭头函数)
ES6新特性之 函数参数的默认值写法 和 箭头函数. 1.函数参数的默认值 ES5中不能直接为函数的参数指定默认值,只能通过以下的变通方式: 从上面的代码可以看出存在一个问题,当传入的参数为0或者 ...
- C++函数默认参数
C++中允许为函数提供默认参数,又名缺省参数. 使用默认参数时的注意事项: ① 有函数声明(原型)时,默认参数可以放在函数声明或者定义中,但只能放在二者之一 double sqrt(double f ...
- 3.C++内联函数,默认参数,占位参数
本章主要内容: 1)内联函数(替代宏代码段) 2)默认参数 3)占位参数 1.C++的内联函数分析 1.1讲解内联函数之前,首先回忆下之前讲的define宏定义: 之前讲过宏定义会经过预处理器进行文本 ...
随机推荐
- asp中将系统货币符号¥改为美国货币符号$的做法
我们一般用FormatCurrency()函数得到字符串前面都会加上人民币符号¥.但在做一些网站时想把他们变成$. 可以在网面的前面加上一名话就OK了 SetLocale("en-us&qu ...
- 深入JavaScript模块化编程
今天看requirejs官网的manual,发现了下面这篇好文章,于是花点时间翻译了一下,翻译不好的地方请指正,谢谢! 推荐阅读原文:) http://www.adequatelygood.com ...
- datanode无法启动问题
在执行了hdfs namenode -format命令之后,再启动datanode发现无法启动. 查看datanode的日志发现: datanode的ClusterId和namenode的Cluste ...
- js中的this基础
this在js中的地位可以说是相当高了,本文介绍下this的基本相关情况,以后还会慢慢介绍 在页面中aler(this)//this的指向是window 在DOM操作中this的指向是当前发生事件的对 ...
- 给出a的定义 -- 指针 和 数组
- KVM&Libvirt基本概念及开发杂谈
导读 大家好,本次肖力分享的主题是KVM&Libvirt基本概念及开发杂谈,内容有些凌乱松散,主要基于自己早期整理的笔记内容和实践感悟,有些内容难免有失偏颇,望见谅.前面先介绍下需要了解的基本 ...
- System.Drawing.Color的颜色对照表
经常使用System.Drawing.Color, 本篇介绍一下颜色与名称及RGB值的对应关系. 1. 颜色与名称的对照表(点击下图放大看): 2. 颜色与RGB值对照表: Color.AliceBl ...
- STL - vector algorithm
// create vector with elements from 1 to 6 in arbitrary order vector<, , , , , }; // find and pri ...
- PHP - AJAX 与 PHP
PHP - AJAX 与 PHP AJAX 被用于创建交互性更强的应用程序. AJAX PHP 实例 下面的实例将演示当用户在输入框中键入字符时,网页如何与 Web 服务器进行通信: 实例 尝试在输入 ...
- Ext.encode 与 Ext.decode .
Ext.encode( Mixed o ) : String: json对象转换json字符串 Ext.decode( String json ) : Object: json字符串转换json对象 ...