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

  • SEARCH
  • Home
  • 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 7992301
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: June 4, 20262026-06-04T13:31:24+00:00 2026-06-04T13:31:24+00:00

Does the positioning of the ‘volatile’ keyword in a method declaration affect its functionality?

  • 0

Does the positioning of the ‘volatile’ keyword in a method declaration affect its functionality?

i.e., is there any difference between the following two pieces of code?

A.

class Test
{
public:
    volatile void testMe() 
    {
    }
};

B.

class Test
{
public:
    void testMe() volatile 
    {
    }
};

And same goes when the member function has a return value. Thank you!

  • 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-06-04T13:31:25+00:00Added an answer on June 4, 2026 at 1:31 pm

    It is the same as for the const qualifier.

    In the first example, the volatile applies to the return value of the function. It is void in this case, so it doesn’t make much sense. In fact, it doesn’t make much sense to return by volatile value*. A volatile return type would only make sense for a reference:

    volatile int& foo() { ... }
    volatile int& i = foo(); // OK
    int j = foo(); // OK, use the volatile reference to construct a non volatile int
    int& j = foo(); // Error!
    

    In the second case, it means that the method is volatile, hence it can be called on (non-const) non-volatile and volatile instances of class Test. A similar method without the volatile qualifier could not be called on a volatile instance.

    Test test0;
    test0.testMe(); // OK
    volatile Test test1;
    test1.testMe(); // OK
    test1.someNonVolatileMethod(); // Error.
    

    *Unless that value is a pointer

    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

Does anyone have any experience positioning the jquery.datepicker found at http://www.kelvinluck.com/assets/jquery/datePicker/v2/demo/datePickerClickInput.html Functionality-wise it works
Does map() iterate through the list like for would? Is there a value in
Does anyone have any idea how to change the thickness of the text pointer
I´m having troubble positioning an externally loaded swf. It simply does not respond to
Does anyone know of any JQUERY ToolTip plugins that work well in an iFrame?
I was wondering does anyone know any PHP Pdf generation libraries that support absolute
Does anyone know how to change icons in Silverlight outofbrowser application?
Does anyone know if views states (used in Silverlight) will be available in next
Does C# allow hashtables to be populated in one-line expressions? I am thinking of
Does anyone have a nice solution for GalleryView when I want to display photos

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.