当前位置:  开发笔记 > 编程语言 > 正文

在C++中,默认函数参数必须是常量吗?

如何解决《在C++中,默认函数参数必须是常量吗?》经验,为你挑选了2个好方法。

默认参数可以是完整表达式的子集.它必须在编译时和默认参数声明的位置绑定.这意味着它可以是函数调用或静态方法调用,并且它可以采用任意数量的参数,只要它们是常量和/或全局变量或静态类变量,而不是成员属性.

它在编译时和声明函数的位置绑定的事实也意味着如果它使用变量,即使另一个变量在函数调用的位置隐藏原始变量,也将使用该变量.

// Code 1: Valid and invalid default parameters
int global = 0;
int free_function( int x );

class Test
{
public:
   static int static_member_function();
   int member_function();

   // Valid default parameters
   void valid1( int x = free_function( 5 ) );
   void valid2( int x = free_function( global ) );
   void valid3( int x = free_function( static_int ) );
   void valid4( int x = static_member_function() );

   // Invalid default parameters
   void invalid1( int x = free_function( member_attribute ) ); 
   void invalid2( int x = member_function() );
private:
   int member_attribute;
   static int static_int;
};

int Test::static_int = 0;

// Code 2: Variable scope
int x = 5;
void f( int a );
void g( int a = f( x ) ); // x is bound to the previously defined x
void h()
{
   int x = 10; // shadows ::x
   g(); // g( 5 ) is called: even if local x values 10, global x is 5.
}

它也可以是通过函数指针调用,即.if foo(int arg =(*fp)()); 这里,在声明foo的范围内查找fp,但每次调用foo()时都会计算*fp. (5认同)


Sergey Skobl.. 12

他们不一定是!默认参数可以是某些限制内的任何表达式.每次调用函数时都会对其进行评估.



1> David Rodríg..:

默认参数可以是完整表达式的子集.它必须在编译时和默认参数声明的位置绑定.这意味着它可以是函数调用或静态方法调用,并且它可以采用任意数量的参数,只要它们是常量和/或全局变量或静态类变量,而不是成员属性.

它在编译时和声明函数的位置绑定的事实也意味着如果它使用变量,即使另一个变量在函数调用的位置隐藏原始变量,也将使用该变量.

// Code 1: Valid and invalid default parameters
int global = 0;
int free_function( int x );

class Test
{
public:
   static int static_member_function();
   int member_function();

   // Valid default parameters
   void valid1( int x = free_function( 5 ) );
   void valid2( int x = free_function( global ) );
   void valid3( int x = free_function( static_int ) );
   void valid4( int x = static_member_function() );

   // Invalid default parameters
   void invalid1( int x = free_function( member_attribute ) ); 
   void invalid2( int x = member_function() );
private:
   int member_attribute;
   static int static_int;
};

int Test::static_int = 0;

// Code 2: Variable scope
int x = 5;
void f( int a );
void g( int a = f( x ) ); // x is bound to the previously defined x
void h()
{
   int x = 10; // shadows ::x
   g(); // g( 5 ) is called: even if local x values 10, global x is 5.
}


它也可以是通过函数指针调用,即.if foo(int arg =(*fp)()); 这里,在声明foo的范围内查找fp,但每次调用foo()时都会计算*fp.

2> Sergey Skobl..:

他们不一定是!默认参数可以是某些限制内的任何表达式.每次调用函数时都会对其进行评估.

推荐阅读
乐韵答题
这个屌丝很懒,什么也没留下!
DevBox开发工具箱 | 专业的在线开发工具网站    京公网安备 11010802040832号  |  京ICP备19059560号-6
Copyright © 1998 - 2020 DevBox.CN. All Rights Reserved devBox.cn 开发工具箱 版权所有