Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

I have found out that unions are classes in c++.

If you declare a class as a union:

union Foo    // Declare union type
{
    char   ch;

    int func(int a);

};          

Will the size of the union be 4 or 1 (assuming char size of 1 and pointers size of 4 ) ?

share|improve this question
While both answers are good, neither addresses a specific misunderstanding in your question: member functions (of structs, classes or unions) are not data members. Although the details are implementation-defined, they usually take no space in instance objects (the partial exception being virtual functions). – Useless Sep 7 '12 at 13:36

2 Answers

up vote 3 down vote accepted

I have found out that unions are classes too in c++. (emphasis mine)

No (they are a class-type, not classes).My bad, apparently they are classes:

3.9.2/1

  • [...]
  • unions, which are classes capable of containing objects of different types at different times
  • [...]

(no longer relevant) Unions can't have virtual member functions & also can't be used in inheritance.

Onto the answer:

The size will be large enough to accommodate the largest data member. In this case, it will likely be 1, yes.

share|improve this answer
note: are there good reasons for those (=vs class) restrictions? – Karoly Horvath Sep 7 '12 at 12:05
1  
@KarolyHorvath dunno, ask a question :) – Luchian Grigore Sep 7 '12 at 12:05
Also, union can't contains non-static data members of reference type. – ForEveR Sep 7 '12 at 12:06

Try it yourself:

#include <iostream>

union Foo    // Declare union type
{
    char   ch;

    int func(int a);     
};   

int main()
{
    std::cout << sizeof(Foo);
}

Output:

1
share|improve this answer
for c/c++ learning by trial (and error) is not adviced (though in this case it gives the correct answer). – Karoly Horvath Sep 7 '12 at 12:04
Though verifying understanding is only possible through trial and error. – ronag Sep 7 '12 at 12:07
1  
@KarolyHorvath: You have a partial point, but experimenting and trying-for-yourself are crucial parts of an interested programmer's life! And I'd much prefer to see a question like "I tried X and observed Y; is this mandated by the langauge?" – Kerrek SB Sep 7 '12 at 12:07
@Kerrek SB: that's perfectly fine for a Question. What I'm saying is that it's a wrong mentality for an answer. – Karoly Horvath Sep 7 '12 at 12:32
@KarolyHorvath: Yeah, I suppose. – Kerrek SB Sep 7 '12 at 12:35

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.