devxlogo

Default Arguments are not Part of a Function’s Type

Default Arguments are not Part of a Function’s Type

Although the default arguments of a function must appear in its declaration, they are not considered part of its type. Thus, you cannot overload a function by using different default arguments:

           void f(int n = 6);  void f(int n = 0); //error, redefinition of f() above

The attempt to overload f() is illegal because the compiler cannot distinguish between the two versions of f().

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