<<<Index>>>

How to initialize const static members



    // point.h
    class Point
    {
        static const double PI;
    };

    // point.cpp
    // Note that static keyword here is an error!
    const double Point::PI = 3.14159;

<<<Index>>>