C ++中的类到类数据类型转换

时间:2013-12-05 06:40:14

标签: c++ class built-in

我正在教自己如何用C ++编程并解决这个问题:

  

编写一个具有Date类和Julian类的C ++程序。 Julian类应将日期表示为长整数。对于此程序,请在Date类中包含一个转换运算符函数,该函数使用提供的算法将Date对象转换为Julian对象。通过转换2011年1月31日和2012年3月16日测试您的程序,这对应于Julian日期734533和734943.

因此我们必须使用Date方法将参数转换为Julian类。我知道必须通过关键字operator完成此操作。我写了一些代码并得到以下错误消息:

ttt.cpp:34:7: error: incomplete result type 'Julian' in function definition
Date::operator Julian()
      ^
ttt.cpp:11:7: note: forward declaration of 'Julian'
class Julian;   // Forward declaration
      ^
ttt.cpp:50:12: error: 'Julian' is an incomplete type
    return Julian(long(365*year + 31*(month-1) + day + T - MP));
           ^
ttt.cpp:11:7: note: forward declaration of 'Julian'
class Julian;   // Forward declaration
      ^
2 errors generated.

我不清楚此错误消息的含义。我添加了前向声明,因为Julian是在Date之后定义的。我的代码如下。我将不胜感激任何帮助。谢谢。

#include <iostream>
#include <iomanip>
using namespace std;

/*
 * Class to class conversion
 */


// CLASS DECLARATIONS=========================================================
class Julian;   // Forward declaration

// "Date" Class Declaration------------------------------------------
class Date
{
private:
    int month;
    int day;
    int year;
public:
    Date(int=7, int=4, int=2012);   // Constructor
    operator Julian();              // Method to convert "Date" class to "Julian"
    void showDate();                // print "Date"
};

// "Date" CLASS IMPLEMENTATION----------------------------
Date::Date(int mm, int dd, int yyyy)
{   // Constructor Method
    month = mm;
    day = dd;
    year = yyyy;
}

Date::operator Julian()
{   // Method to convert "Date" class to "Julian"
    int MP, YP, T;

    if( month <=2 )
    {
        MP = 0;
        YP = year - 1;
    }
    else
    {
        MP = int(0.4*month + 2.3);
        YP = year;
    }
    T = int(YP/4) - int(YP/100) + int(YP/400);

    return Julian(long(365*year + 31*(month-1) + day + T - MP));
}

void Date::showDate()
{
    cout << setfill('0')
         << setw(2) << month << '/'
         << setw(2) << day << '/'
         << setw(2) << year % 100;
}

// "Julian" CLASS DECLARATION--------------------------------------------------------
class Julian
{
private:
    int days;
public:
    Julian(long=0);         // Constructor
    void show();            // Print julian date
};

// "Julian" Class Implementation----------------------------------------------------
Julian::Julian(long d)
{
    days = d;
}


void Julian::show()
{
    cout << days << endl;
}




int main()
{
    Date a(1,31,2011);
    Date b(3,16,2012);

    Julian c, d;

    c = Julian(a);
    d = Julian(b);

    a.showDate();
    c.show();
    cout << endl;

    b.showDate();
    d.show();
    cout << endl;

    return 0;
}

1 个答案:

答案 0 :(得分:1)

您需要在Julian课程之前定义Date课程。由于Date类需要Julian类的完整定义,因此前向声明在此处无法正常工作。