Sign Up

Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.

Have an account? Sign In

Have an account? Sign In Now

Sign In

Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.

Sign Up Here

Forgot Password?

Don't have account, Sign Up Here

Forgot Password

Lost your password? Please enter your email address. You will receive a link and will create a new password via email.

Have an account? Sign In Now

You must login to ask a question.

Forgot Password?

Need An Account, Sign Up Here

Please briefly explain why you feel this question should be reported.

Please briefly explain why you feel this answer should be reported.

Please briefly explain why you feel this user should be reported.

Sign InSign Up

The Archive Base

The Archive Base Logo The Archive Base Logo

The Archive Base Navigation

  • Home
  • SEARCH
  • About Us
  • Blog
  • Contact Us
Search
Ask A Question

Mobile menu

Close
Ask a Question
  • Home
  • Add group
  • Groups page
  • Feed
  • User Profile
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Buy Points
  • Users
  • Help
  • Buy Theme
  • SEARCH
Home/ Questions/Q 4074706
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: May 20, 20262026-05-20T17:12:17+00:00 2026-05-20T17:12:17+00:00

I have a boost::variant in my program and I want to check if the

  • 0

I have a boost::variant in my program and I want to check if the variant itself is initialized and also if there is a value contained in one of it’s types.

I’ve tried empty() on the variant, but that doesn’t seem to work. Neither does checking against NULL.

Does anybody know how to check for this?

EDIT: Ok, It seems it will never be empty, but there will not always be a value in it’s contained types, so how do I check for a no-value situation?

  • 1 1 Answer
  • 0 Views
  • 0 Followers
  • 0
Share
  • Facebook
  • Report

Leave an answer
Cancel reply

You must login to add an answer.

Forgot Password?

Need An Account, Sign Up Here

1 Answer

  • Voted
  • Oldest
  • Recent
  • Random
  1. Editorial Team
    Editorial Team
    2026-05-20T17:12:18+00:00Added an answer on May 20, 2026 at 5:12 pm

    A boost::variant is always initialized.

    If you did not initalized it explicitly, the first item was constructed using its default constructor:

    struct Foo {};
    struct Bar {};
    
    struct Visitor: boost::static_visitor<>
    {
      void operator()(Foo const& foo) const { std::cout << "Foo\n"; }
      void operator()(Bar const& bar) const { std::cout << "Bar\n"; }
    };
    
    int main(int argc, char* argv[])
    {
      boost::variant<Foo,Bar> var;
      boost::apply_visitor(Visitor(), var); // prints Foo
      return 0;
    }
    
    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

I have a boost::variant , which contains various types and I have a string
I have a class that requires a boost::variant containing shared pointers to various types
I have tried reading: http://www.boost.org/doc/libs/1_41_0/boost/variant.hpp http://www.codeproject.com/KB/cpp/TTLTyplist.aspx and chapter 3 of Modern C++ Design but
If all the types in my boost::variant support the same method, is there a
I have a boost::bimap and I want to iterate over all positions to add
suppose i have the following: boost::unordered_map< string , someValueType > map; someValueType& value =
I have just started with using boost libraries. For one of our projects i
Let's say that I have a boost::variant<std::string, int> myVariant; In this object I keep
I faced a problem using a Boost variant. I have a segmentation fault when
I have a boost variant of looking like this: typedef boost::variant<int, float, double, long,

Explore

  • Home
  • Add group
  • Groups page
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Users
  • Help
  • SEARCH

Footer

© 2021 The Archive Base. All Rights Reserved
With Love by The Archive Base

Insert/edit link

Enter the destination URL

Or link to existing content

    No search term specified. Showing recent items. Search or use up and down arrow keys to select an item.