1

有代码:

Date::Date(const char* day, const char* month, const char* year):is_leap__(false)
{
    my_day_ = lexical_cast<int>(day);


    my_month_ = static_cast<Month>(lexical_cast<int>(month));

    /*Have to check month here, other ctor assumes month is correct*/
    if (my_month_ < 1 || my_month_ > 12)
    {
        throw std::exception("Incorrect month.");
    }
    my_year_ = lexical_cast<int>(year);

    if (!check_range_year_(my_year_))
    {
        throw std::exception("Year out of range.");
    }

    if (check_leap_year_(my_year_))//SKIPS THIS LINE
    {
        is_leap__ = true;
    }
    if (!check_range_day_(my_day_, my_month_))
    {
        throw std::exception("Day out of range.");
    }

}

bool Date::check_leap_year_(int year)const//IF I MARK THIS LINE WITH BREAKPOINT I'M GETTING MSG THAT THERE IS NO EXECUTABLE CODE IS ASSOSIATED WITH THIS LINE
{
    if (!(year%400) || (year%100 && !(year%4)))
    {
        return true;
    }
    else
    {
        return false;
    }
}

在我看来,这很奇怪。我的代码中有对这个 fnc 的调用,为什么编译器会忽略它。
PS我正在尝试在发布中进行调试。

4

2 回答 2

1

尝试在发布中进行调试会导致痛苦。该函数是内联的,所以你不能中断它。这种优化到处都会发生,变量中的值会看起来不对等。最好在调试中调试。

顺便说一句,只需执行以下操作:return !(year%400) || (year%100 && !(year%4));


我所说的“它被内联”的意思是你的代码在那部分变成了:

if (!(my_year_%400) || (my_year_%100 && !(my_year_%4)))
{
    is_leap__ = true;
}

没有函数调用,也没有什么可中断的

于 2010-04-04T15:19:08.610 回答
0

函数头确实不会编译为任何可执行代码。尝试在左大括号或函数中的第一条语句上设置断点。

于 2010-04-04T15:16:10.057 回答