程序師世界是廣大編程愛好者互助、分享、學習的平台,程序師世界有你更精彩!
首頁
編程語言
C語言|JAVA編程
Python編程
網頁編程
ASP編程|PHP編程
JSP編程
數據庫知識
MYSQL數據庫|SqlServer數據庫
Oracle數據庫|DB2數據庫
 程式師世界 >> 編程語言 >> C語言 >> C++ >> C++入門知識 >> C++ 之explicit用法

C++ 之explicit用法

編輯:C++入門知識

 

explicit

C++   Specific  

 

This   keyword   is   a   declaration   specifier   that   can   only   be   applied   to   in-class   constructor   declarations.   Constructors   declared   explicit   will   not   be   considered   for   implicit   conversions.   For   example:

 

class   X   {

public:

      explicit   X(int);             //legal

      explicit   X(double)   {       //legal

            //   ...

      }

};

 

explicit   X::X(int)   {}             //illegal

An   explicit   constructor   cannot   take   part   in   implicit   conversions.   It   can   only   be   used   to   explicitly   construct   an   object.   For   example,   with   the   class   declared   above:

 

void   f(X)   {}

void   g(int   I)   {

      f(i);             //   will   cause   error

}

void   h()   {

      X   x1(1);             //   legal

}

The   function   call   f(i)   fails   because   there   is   no   available   implicit   conversion   from   int   to   X.

 

Note       It   is   meaningless   to   apply   explicit   to   constructors   with   multiple   arguments,   since   such   constructors   cannot   take   part   in   implicit   conversions.

 

END   C++   Specific

 

  1. 上一頁:
  2. 下一頁:
Copyright © 程式師世界 All Rights Reserved