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

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: May 29, 20262026-05-29T17:58:42+00:00 2026-05-29T17:58:42+00:00

Can we access static functions defined in one file to another file? In the

  • 0

Can we access static functions defined in one file to another file?
In the code below, I cannot call the static method fun(). Why can’t I and is there another way to access it?

static void fun();// In abc.h
static void fun(){cout<<"Hello."<<endl;}

//xyz.cpp
#include "abc.h"
void main()
{
    fun();// Why I am not able to call this static method? Is there any other way to
          //Access this static function?
}
  • 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-05-29T17:58:43+00:00Added an answer on May 29, 2026 at 5:58 pm

    Because that’s how static (on free functions and global variables) works. It’s supposed to do exactly this: limit access to the current compilation unit. Most C/C++ compilers do this by mangling the function name with the source file name.

    In theory, you could decompose the mangling, locate the mangled function in the executable at runtime, and do some assembly voodoo to force a function call, but this is going to be brittle, platform-dependent, and a general pain – I doubt you could bring it to practical use. Just don’t declare the function static if you want to call it from elsewhere.

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

Sidebar

Related Questions

How can I obtain the command line arguments of another process? Using static functions
How can I access a static variable in a separate class in PHP? Is
How can I access a public static member of a Java class from ColdFusion?
Why can't enum's constructor access static fields and methods? This is perfectly valid with
How can hibernate can access a private field/method of a java class , for
In PHP you can access characters of strings in a few different ways, one
Below is an example of what I'm trying to do. The parent can't access
I created a Java code that tries to access the method LoadProject of the
A child class can access protected functions in parent class,but the parent class can't
I'm working on a project where there's a static object declared in one of

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.