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

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

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: May 10, 20262026-05-10T17:05:13+00:00 2026-05-10T17:05:13+00:00

In Flex (and many other languages) a function/method of a class can be declared

  • 0

In Flex (and many other languages) a function/method of a class can be declared private or protected (or public). What’s the difference? I have the impression it has something to do with the relationship to child classes and how things are inherited or can be called, but I’m not sure what, exactly.

  • 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. 2026-05-10T17:05:14+00:00Added an answer on May 10, 2026 at 5:05 pm

    In general:

    • Private members can only be accessed by the class itself.
    • Protected members can only be accessed by the class itself and its descendants.
    • Public members are accessible by everyone.

    Thus, visibility increases as you go from private to protected to public.

    In C++, you can control how the visibility of members should be inherited to the descendants by prepending the base class name with the private, protected or public keywords, meaning you want the visibility of the base class members to be at most at that level.

    class A { private:     int privA; protected:     int protA; public:     int pubA;      // privA can be accessed inside class A     // protA can be accessed inside class A     // pubA  can be accessed inside class A }; // pubA can be accessed by anyone  class B : public A {     // No change to visibility of members     // privA can't be accessed inside class B     // protA can be accessed inside class B     // pubA  can be accessed inside class B }; // pubA can be accessed by anyone  class C : protected A {     // Public members downgraded to protected     // privA can't be accessed inside class C     // protA can be accessed inside class C     // pubA  can be accessed inside class C }; // None of the members can be accessed outside class C  class D : private A {     // Public and protected members downgraded to private     // privA can't be accessed inside class D     // protA can't be accessed inside class D     // pubA  can't be accessed inside class D }; // None of the members can be accessed outside class D 

    In each of the cases above, the descendant classes are of course able to introduce their own private, protected and public members.

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

Sidebar

Ask A Question

Stats

  • Questions 76k
  • Answers 76k
  • Best Answers 0
  • User 1
  • Popular
  • Answers
  • Editorial Team

    How to approach applying for a job at a company ...

    • 7 Answers
  • Editorial Team

    How to handle personal stress caused by utterly incompetent and ...

    • 5 Answers
  • Editorial Team

    What is a programmer’s life like?

    • 5 Answers
  • added an answer If this is a recurring scenario, I would rather use… May 11, 2026 at 3:09 pm
  • added an answer String test = String.format('test goes here %s more text', 'Testing');… May 11, 2026 at 3:08 pm
  • added an answer I figured it out myself now. You need to create… May 11, 2026 at 3:08 pm

Related Questions

A lot of programming languages and frameworks do/allow/require something that I can't seem to
I have a requirement on my current project (a Flex app which will be
I have HTML that includes symbols such as the Trademark TM as superscript (™).
I develop with FlashDevelop3 R2 and the Flex 3.3 SDK and there are many

Trending Tags

analytics british company computer developers django employee employer english facebook french google interview javascript language life php programmer programs salary

Top Members

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.