| Version 1.9 Build 1556
|
|
Next: Exceptions
Up: Programming Tips
Previous: Portability
#include <stddef.h>
....
struct MyStruct {
int x;
int y;
};
...
int theYOffset = offsetof(MyStruct, y);
...
class A {
public:
A() : y(9), x(7+y) {}; // NO !!! y may not be initialized before x
private:
int x;
int y;
}; // A
Next: Exceptions
Up: Programming Tips
Previous: Portability
  Contents
  Index
Please send questions or comments about AIPS++ to aips2-request@nrao.edu.
Copyright © 1995-2000 Associated Universities Inc.,
Washington, D.C.
Return to AIPS++ Home Page
2006-10-15