Forums before death by AOL, social media and spammers... "We can't have nice things"
|    comp.lang.c++.moderated    |    Moderated discussion of C++ superhackery    |    33,346 messages    |
[   << oldest   |   < older   |   list   |   newer >   |   newest >>   ]
|    Message 32,468 of 33,346    |
|    DeMarcus to All    |
|    Re: How do you solve the general missing    |
|    09 Jul 12 16:08:26    |
   
   From: use_my_alias_here@hotmail.com   
      
   >> Sometimes you need to inform that the value is missing. Some use   
   >> pointers to objects where NULL represents the missing value. Another   
   >> solution is to use boost::optional.   
   >   
   > The only other variant I could imagine is an empty container, which is   
   > rather similar to boost::optional.   
   >   
   >   
   >> However, sometimes you need to provide more second level information   
   >> than just missing value. How do you solve that?   
   >>   
   >> I came up with an idea below. Is that a good solution or are there   
   >> better ways to solve it? Does any library have anything similar? What   
   >> can be improved? Any feedback is welcome.   
   > [...]   
   >> enum Signal   
   >> {   
   >> NOT_AVAILABLE,   
   >> AVAILABLE,   
   >> WEAK,   
   >> DISTORTED   
   >> };   
   >>   
   >> typedef Multivalence<   
   >> double,   
   >> Signal,   
   >> NOT_AVAILABLE,   
   >> AVAILABLE> SignalDouble;   
   >>   
   >> SignalDouble getSample()   
   >> {   
   >> //return SignalDouble(); // Missing value.   
   >> return SignalDouble( 8.75 ); // Good value.   
   >> //return SignalDouble( DISTORTED ); // Distorted value.   
   >> }   
   >>   
   >> int main( int argc, char* argv[] )   
   >> {   
   >> SignalDouble sample = getSample();   
   >>   
   >> switch( sample )   
   >> {   
   >> case NOT_AVAILABLE:   
   >> std::cout << "No sample available" << std::endl;   
   >> break;   
   >>   
   >> case AVAILABLE:   
   >> std::cout << "Sample: " << *sample << std::endl;   
   >> break;   
   >>   
   >> case WEAK:   
   >> std::cout << "Signal too weak" << std::endl;   
   >> break;   
   >>   
   >> case DISTORTED:   
   >> std::cout << "Signal distorted" << std::endl;   
   >> break;   
   >> }   
   >>   
   >> return 0;   
   >> }   
   >   
   > I would certainly suggest this code as replacement here:   
   >   
   > try   
   > {   
   > double d = getSample();   
   > }   
   > catch(std::exception const& e)   
   > {   
   > std::cout << "failed to read sample: " << e.what() << std::endl;   
   > }   
   >   
      
   I agree that exceptions is the right way to deal with problem that arises,   
   maybe my example wasn't the best. But consider you would like to have an enum   
   like this.   
      
   enum SciVal   
   {   
    NOT_AVAILABLE,   
    AVAILABLE,   
    NEG_INF,   
    POS_INF   
   }   
      
   What I mean is that there might be values not representable with ordinary   
   types.   
      
   > Assuming that the example usage is just not representative for what you   
   > are actually doing, there is another version of writing what you do there:   
   >   
   > typedef boost::variant
|
[   << oldest   |   < older   |   list   |   newer >   |   newest >>   ]
(c) 1994, bbs@darkrealms.ca