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 9210715
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: June 18, 20262026-06-18T01:08:26+00:00 2026-06-18T01:08:26+00:00

I am trying to create a namespace-scope constant with external linkage // in some

  • 0

I am trying to create a namespace-scope constant with external linkage

// in some include file:

namespace foo 
{
    constexpr double bar() { return 1.23456; } // internal linkage
    constexpr double baz = 1.23456;            // internal linkage
    const double bing = 1.23456;               // internal linkage
}

Is this even possible?

  • 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-18T01:08:27+00:00Added an answer on June 18, 2026 at 1:08 am

    Yes, and no; you can use extern:

    [C++11: 3.5/3]: A name having namespace scope (3.3.6) has internal linkage if it is the name of

    • a variable, function or function template that is explicitly declared static; or,
    • a variable that is explicitly declared const or constexpr and neither explicitly declared extern nor previously declared to have external linkage; or
    • a data member of an anonymous union.

    So:

    namespace foo 
    {
        extern constexpr double bar() { return 1.23456; }
        extern constexpr double baz = 1.23456;
    }
    

    In your other translation unit, you should now be able to declare the function’s name and refer to it:

    #include <iostream>
    
    namespace foo
    {
       extern constexpr double bar();
    }
    
    int main()
    {
       std::cout << foo::bar() << '\n';
    }
    

    However, the rules for constexpr variables state that you cannot have a declaration that is not also a definition:

    [C++11: 7.1.5/9]: A constexpr specifier used in an object declaration declares the object as const. Such an object shall have literal type and shall be initialized. [..]

    So, you cannot take the same approach with baz.

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

Sidebar

Related Questions

Trying to create a list to return some JSON data to a view. Following
I'm trying to use a Spring context namespace to build some existing configuration objects
Trying to grasp Prototyping in Javascript. Trying to create my own namespace to extend
I am trying to create a macro that takes a scope as a parameter.
I'm trying to create a namespace for my backbone app so I can make
Hi everyone: I am trying to create a namespace so I can use a
Having some trouble understanding variable scope within a class structure. I want to create
Here's my code: #include <vector> #include <stdio.h> #include <iostream> using namespace std; class Foo
I was trying to create a proxy class for a WSDL file having the
I'm trying to create a filter, for some reason I am not seeing autocompletion

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.