码迷,mamicode.com
首页 > 其他好文 > 详细

隐式的类类型转换

时间:2015-07-16 21:32:28      阅读:120      评论:0      收藏:0      [点我收藏+]

标签:

如果构造函数只接受一个实参,则它实际上定义了转换为此类类型的隐式转换机制。将这种构造函数称为转换构造函数。
  1. #ifndef MAIN_H_INCLUDED
  2. #define MAIN_H_INCLUDED
  3. #include <iostream>
  4. using namespace std;
  5. class ClassTest
  6. {
  7. public:
  8. ClassTest()
  9. {
  10. cout << "ClassTest()" <<endl;
  11. }
  12. ClassTest(int i)
  13. {
  14. cout << "ClassTest(int)" <<endl;
  15. value = i;
  16. value2 = 2;
  17. }
  18. ClassTest(int i, int j): value(i), value2(j)
  19. {
  20. cout << "ClassTest(int, int)" <<endl;
  21. }
  22. ClassTest(const ClassTest& test)
  23. {
  24. cout << "ClassTest(const ClassTest&)" << endl;
  25. value = test.value;
  26. value2 = test.value2;
  27. }
  28. void getValue(int &, int &);
  29. private:
  30. int value = 0;
  31. int value2 = 0;
  32. };
  33. #endif // MAIN_H_INCLUDED
  1. #include "main.h"
  2. void ClassTest::getValue(int &iValue, int &iValue2)
  3. {
  4. iValue = value;
  5. iValue2 = value2;
  6. }
  7. int main()
  8. {
  9. ClassTest classTest = 2;
  10. /**
  11. * 还可以使用以下几种实现方法
  12. * ClassTest classTest(2);
  13. * ClassTest classTest = ClassTest(2);
  14. * ClassTest classTest = (ClassTest)2;
  15. */
  16. int value = 0;
  17. int value2 = 0;
  18. classTest.getValue(value, value2);
  19. cout << "value = " << value << "\nvalue2 = " << value2 << endl;
  20. return 0;
  21. }
  • 只允许一步类类型转换
  1. #ifndef MAIN_H_INCLUDED
  2. #define MAIN_H_INCLUDED
  3. #include <iostream>
  4. using namespace std;
  5. class ClassTest
  6. {
  7. public:
  8. ClassTest()
  9. {
  10. cout << "ClassTest()" <<endl;
  11. }
  12. ClassTest(string str)
  13. {
  14. strValue = str;
  15. }
  16. string getValue()
  17. {
  18. return strValue;
  19. }
  20. private:
  21. string strValue;
  22. };
  23. #endif // MAIN_H_INCLUDED
  1. #include "main.h"
  2. int main()
  3. {
  4. ClassTest classTest = string("Hello world!");
  5. //ClassTest classTest = "Hello world!";/*无法实现从char[]先转化为string,在由string转换为类类型*/
  6. cout << classTest.getValue() << endl;
  7. return 0;
  8. }
  • 抑制构造函数定义的隐式转换
  1. #ifndef MAIN_H_INCLUDED
  2. #define MAIN_H_INCLUDED
  3. #include <iostream>
  4. using namespace std;
  5. class ClassTest
  6. {
  7. public:
  8. ClassTest()
  9. {
  10. cout << "ClassTest()" << endl;
  11. }
  12. /**
  13. * 如果是在类声明之外进行类成员函数的实现,explicit只加在声明的位置
  14. */
  15. ClassTest(string str)
  16. {
  17. strValue = str;
  18. }
  19. string getValue()
  20. {
  21. return strValue;
  22. }
  23. private:
  24. string strValue;
  25. };
  26. #endif // MAIN_H_INCLUDED
  1. #include "main.h"
  2. int main()
  3. {
  4. //ClassTest classTest = string("Hello world!");/**< 错误 */
  5. ClassTest classTest(string("hello world"));/**< 只能用于直接初始化 */
  6. //ClassTest classTest = "Hello world!";/*无法实现从char[]先转化为string,在由string转换为类类型*/
  7. cout << classTest.getValue() << endl;
  8. return 0;
  9. }





隐式的类类型转换

标签:

原文地址:http://www.cnblogs.com/fengkang1008/p/4652252.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!