Pergunta

Eu sou um aluno na minha primeira aula de programação C ++ e estou trabalhando em um projeto em que temos que criar várias aulas de exceção personalizada e, em um de nossos manipuladores de eventos, use um try/catch Bloqueie para lidar com eles adequadamente.

Minha pergunta é: como faço para pegar meu múltiplo exceções personalizadas no meu try/catch quadra? GetMessage() é um método personalizado em minhas aulas de exceção que retorna a explicação de exceção como um std::string. Abaixo, incluí todo o código relevante do meu projeto.

Obrigado pela ajuda!

Tente/Catch Block


    // This is in one of my event handlers, newEnd is a wxTextCtrl
try {
    first.ValidateData();
    newEndT = first.ComputeEndTime();
    *newEnd << newEndT;
}
catch (// don't know what do to here) {
    wxMessageBox(_(e.GetMessage()), 
                 _("Something Went Wrong!"),
                 wxOK | wxICON_INFORMATION, this);;
}

Método validateTata ()


void Time::ValidateData()
{
    int startHours, startMins, endHours, endMins;

    startHours = startTime / MINUTES_TO_HOURS;
    startMins = startTime % MINUTES_TO_HOURS;
    endHours = endTime / MINUTES_TO_HOURS;
    endMins = endTime % MINUTES_TO_HOURS;

    if (!(startHours <= HOURS_MAX && startHours >= HOURS_MIN))
        throw new HourOutOfRangeException("Beginning Time Hour Out of Range!");
    if (!(endHours <= HOURS_MAX && endHours >= HOURS_MIN))
        throw new HourOutOfRangeException("Ending Time Hour Out of Range!");
    if (!(startMins <= MINUTE_MAX && startMins >= MINUTE_MIN))
        throw new MinuteOutOfRangeException("Starting Time Minute Out of    Range!");
    if (!(endMins <= MINUTE_MAX && endMins >= MINUTE_MIN))
        throw new MinuteOutOfRangeException("Ending Time Minute Out of Range!");
    if(!(timeDifference <= P_MAX && timeDifference >= P_MIN))
        throw new PercentageOutOfRangeException("Percentage Change Out of Range!");
    if (!(startTime < endTime))
        throw new StartEndException("Start Time Cannot Be Less Than End Time!");
}

Apenas uma das minhas aulas de exceção personalizadas, as outras têm a mesma estrutura que esta


class HourOutOfRangeException
{
public:
        // param constructor
        // initializes message to passed paramater
        // preconditions - param will be a string
        // postconditions - message will be initialized
        // params a string
        // no return type
        HourOutOfRangeException(string pMessage) : message(pMessage) {}
        // GetMessage is getter for var message
        // params none
        // preconditions - none
        // postconditions - none
        // returns string
        string GetMessage() { return message; }
        // destructor
        ~HourOutOfRangeException() {}
private:
        string message;
};
Foi útil?

Solução

Se você tem vários tipos de exceção, e assumindo que há uma hierarquia de exceções (e todas derivadas publicamente de alguma subclasse de std::exception,) Comece da mais específica e continue até mais geral:

try
{
    // throws something
}
catch ( const MostSpecificException& e )
{
    // handle custom exception
}
catch ( const LessSpecificException& e )
{
    // handle custom exception
}
catch ( const std::exception& e )
{
    // standard exceptions
}
catch ( ... )
{
    // everything else
}

Por outro lado, se você estiver interessado apenas na mensagem de erro - throw Mesma exceção, digamos std::runtime_error com mensagens diferentes e depois catch este:

try
{
    // code throws some subclass of std::exception
}
catch ( const std::exception& e )
{
    std::cerr << "ERROR: " << e.what() << std::endl;
}

Lembre -se também - jogue por valor, pegue por [const] referência.

Outras dicas

Você deve criar uma classe de exceção básica e ter todas as suas exceções específicas derivam dela:

class BaseException { };
class HourOutOfRangeException : public BaseException { };
class MinuteOutOfRangeException : public BaseException { };

Você pode pegar todos eles em um único bloco de captura:

catch (const BaseException& e) { }

Se você quiser ligar GetMessage, você precisará:

  • Coloque essa lógica em BaseException, ou
  • faço GetMessage uma função de membro virtual em BaseException e substituí -lo em cada uma das classes de exceção derivadas.

Você também pode considerar ter suas exceções derivadas de uma das exceções da biblioteca padrão, como std::runtime_error e use o idiomático what() função de membro em vez de GetMessage().

Derive todas as suas exceções de uma classe base comum BaseException que tem um método virtual GetMessage().

Então catch(const BaseException& e).

Eu tive um problema semelhante hoje, mas não precisava da minha solução para resolver meu problema. Honestamente, eu não conseguia pensar em casos de uso real (registro?), E não encontrei muito uso no meu código.

De qualquer forma, esta é uma abordagem com listas de tipos (requer C ++ 11). Eu acho que a vantagem dessa abordagem é que não há necessidade de ter uma classe base comum para exceções personalizadas (exceto para STD :: exceção, talvez?). Em outras palavras, não é intrusivo à sua hierarquia de exceção.

Pode haver alguns erros sutis que eu não conheço.

#include <type_traits>
#include <exception>

/// Helper class to handle multiple specific exception types
/// in cases when inheritance based approach would catch exceptions
/// that are not meant to be caught.
///
/// If the body of exception handling code is the same
/// for several exceptions,
/// these exceptions can be joined into one catch.
///
/// Only message data of the caught exception is provided.
///
/// @tparam T  Exception types.
/// @tparam Ts  At least one more exception type is required.
template <class T, class... Ts>
class MultiCatch;

/// Terminal case that holds the message.
/// ``void`` needs to be given as terminal explicitly.
template <>
class MultiCatch<void> {
 protected:
  explicit MultiCatch(const char* err_msg) : msg(err_msg) {}
  const char* msg;
};

template <class T, class... Ts>
class MultiCatch : public MultiCatch<Ts...> {
  static_assert(std::is_base_of<std::exception, T>::value, "Not an exception");

 public:
  using MultiCatch<Ts...>::MultiCatch;

  /// Implicit conversion from the guest exception.
  MultiCatch(const T& error) : MultiCatch<Ts...>(error.what()) {}  // NOLINT

  /// @returns The message of the original exception.
  const char* what() const noexcept {
    return MultiCatch<void>::msg;
  }
};

/// To avoid explicit ``void`` in the type list.
template <class... Ts>
using OneOf = MultiCatch<Ts..., void>;

/// Contrived example.
void foo() {
  try {
    bar();  // May throw three or more sibling or unrelated exceptions.
  } catch (const OneOf<IOError, OutOfMemory>& err) {
    log() << "External failure: " << err.what();

    throw;  // Throw the original exception.
  }
}

Quando os modelos não podem, as macros salvam o dia. A solução é retirada de Impulso. Ele ferve para 7 linhas de código.

/// @file multicatch.hpp
#include <boost/preprocessor/variadic/to_list.hpp>
#include <boost/preprocessor/list/for_each.hpp>

/// Callers must define CATCH_BODY(err) to handle the error,
/// they can redefine the CATCH itself, but it is not as convenient. 
#define CATCH(R, _, T) \
  catch (T & err) {    \
    CATCH_BODY(err)    \
  }
/// Generates catches for multiple exception types
/// with the same error handling body.
#define MULTICATCH(...) \
  BOOST_PP_LIST_FOR_EACH(CATCH, _, BOOST_PP_VARIADIC_TO_LIST(__VA_ARGS__))
// end of file multicatch.hpp

/// @file app.cc
#include "multicatch.hpp"

// Contrived example.
/// Supply the error handling logic.
#define CATCH_BODY(err)                        \
  log() << "External failure: " << err.what(); \
  throw;

void foo() {
  try {
    bar();  // May throw three or more sibling or unrelated exceptions.
  }
  MULTICATCH(IOError, OutOfMemory)
}

#undef CATCH_BODY

Eu encontro o mesmo problema e aqui está o que acabei com:

  std::shared_ptr<MappedImage> MappedImage::get(const std::string & image_dir,
                                                const std::string & name,
                                                const Packet::Checksum & checksum) {
    try {
      return std::shared_ptr<MappedImage>(images_.at(checksum));
    } catch (std::out_of_range) {
    } catch (std::bad_weak_ptr) {
    }
    std::shared_ptr<MappedImage> img =
      std::make_shared<MappedImage>(image_dir, name, checksum);
    images_[checksum_] = img;
    return img;
  }

No meu caso, a função retorna quando não recebe uma exceção. Então, na verdade, não preciso fazer nada dentro da captura, mas posso fazer o trabalho fora da tentativa.

#include <iostream> void test(int x)` { try{ if(x==1) throw (1); else if(x==2) throw (2.0); } catch(int a) { cout<<"It's Integer"; } catch(double b) { cout<<"it's Double"; } } int main(){ cout<<" x=1"; test(1); cout<<"X=2"; test(2.0); return 0; }`
Licenciado em: CC-BY-SA com atribuição
Não afiliado a StackOverflow
scroll top