devxlogo

Declaring a Volatile Member Function

Declaring a Volatile Member Function

You’re probably familiar with const member functions such as:

   class A  {  public:    int get_x() const; // can't change A's state  };

C++ also supports volatile member functions. You declare a member function with the volatile specifier to ensure that it can be called safely for a volatile object:

   class B  {    int x;  public:    void f() volatile; // volatile member function  };  int main()  {    volatile B b;  // b is a volatile object    b.f();  // call a volatile member function safely  }

The object b is declared volatile. Calling a non-volatile member function from this object is unsafe, because b’s state might have been changed by a different thread in the meantime. To ensure that f() can be called safely for a volatile object, it’s declared volatile too.

See also  Professionalism Starts in Your Inbox: Keys to Presenting Your Best Self in Email
devxblackblue

About Our Editorial Process

At DevX, we’re dedicated to tech entrepreneurship. Our team closely follows industry shifts, new products, AI breakthroughs, technology trends, and funding announcements. Articles undergo thorough editing to ensure accuracy and clarity, reflecting DevX’s style and supporting entrepreneurs in the tech sphere.

See our full editorial policy.

About Our Journalist