Wayback Machinekoobas.hobune.stream
May JUN Jul
Previous capture 13 Next capture
2021 2022 2023
1 capture
13 Jun 22 - 13 Jun 22
sparklines
Close Help
  • Products
  • Solutions
  • Made with Unity
  • Learning
  • Support & Services
  • Community
  • Asset Store
  • Get Unity

UNITY ACCOUNT

You need a Unity Account to shop in the Online and Asset Stores, participate in the Unity Community and manage your license portfolio. Login Create account
  • Blog
  • Forums
  • Answers
  • Evangelists
  • User Groups
  • Beta Program
  • Advisory Panel

Navigation

  • Home
  • Products
  • Solutions
  • Made with Unity
  • Learning
  • Support & Services
  • Community
    • Blog
    • Forums
    • Answers
    • Evangelists
    • User Groups
    • Beta Program
    • Advisory Panel

Unity account

You need a Unity Account to shop in the Online and Asset Stores, participate in the Unity Community and manage your license portfolio. Login Create account

Language

  • Chinese
  • Spanish
  • Japanese
  • Korean
  • Portuguese
  • Ask a question
  • Spaces
    • Default
    • Help Room
    • META
    • Moderators
    • Topics
    • Questions
    • Users
    • Badges
  • Home /
avatar image
0
Question by ina · Apr 14, 2012 at 06:52 PM · staticpubliccsprotected

protected static in Unity CS?

It seems that any method called by a public static function has to be public as well..

If it's a method that should really only be accessed from the same public static class, would using the "protected" keyword work?

Comment
Add comment · Show 1
10 |3000 characters needed characters left characters exceeded
▼
  • Viewable by all users
  • Viewable by moderators
  • Viewable by moderators and the original poster
  • Advanced visibility
Viewable by all users
avatar image TreyH · Mar 14, 2019 at 03:33 PM 1
Share

Private functions can be included in public functions.

 public static class Scopes
 {
     public static void Public()
     {
         Debug.Log("Public!");
         Scopes.Private();
     }
 
     private static void Private()
     {
         Debug.Log("Private!");
     }
 }


1 Reply

· Add your reply
  • Sort: 
avatar image
0

Answer by paulbuck86 · Mar 14, 2019 at 03:14 PM

I'm surprised this hasn't been answered. Yes, protected works to limit code access within the class or derived classes. However, I personally like to use "protected internal" since it acts like an OR statement and allows my code to be accessed namespace wide.

Comment
Add comment · Show 2 · Share
10 |3000 characters needed characters left characters exceeded
▼
  • Viewable by all users
  • Viewable by moderators
  • Viewable by moderators and the original poster
  • Advanced visibility
Viewable by all users
avatar image Bonfire-Boy · Mar 14, 2019 at 03:37 PM 1
Share

Probably worth explicitly pointing out the huge error in the question: methods called by a public static function do not need to be public (any more than they need to be static). This aspect of the question is a complete red herring.

avatar image Bunny83 Bonfire-Boy · Mar 15, 2019 at 08:16 AM 0
Share

Also "internal" does not restrict "namespace wide" but assembly wide across all namespaces. When and how to use access modifiers should not be personal taste but a software design decision. Like TreyH said in the comment, private does work just fine within the same class. protected is only used when subclasses of the class should also have access to it.

Your answer

Hint: You can notify a user about this post by typing @username

Up to 2 attachments (including images) can be used with a maximum of 524.3 kB each and 1.0 MB total.

Follow this Question

Answers Answers and Comments

8 People are following this question.

avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image

Related Questions

Restrict access to components on same object 1 Answer

What is the difference between private and protected? 2 Answers

Whats the difference between public and static variable? 2 Answers

public static bool not working at all. 0 Answers

Why is text ui cant be static ? 0 Answers


Enterprise
Social Q&A

Social
Subscribe on YouTube social-youtube Follow on LinkedIn social-linkedin Follow on Twitter social-twitter Follow on Facebook social-facebook Follow on Instagram social-instagram

Footer

  • Purchase
    • Products
    • Subscription
    • Asset Store
    • Unity Gear
    • Resellers
  • Education
    • Students
    • Educators
    • Certification
    • Learn
    • Center of Excellence
  • Download
    • Unity
    • Beta Program
  • Unity Labs
    • Labs
    • Publications
  • Resources
    • Learn platform
    • Community
    • Documentation
    • Unity QA
    • FAQ
    • Services Status
    • Connect
  • About Unity
    • About Us
    • Blog
    • Events
    • Careers
    • Contact
    • Press
    • Partners
    • Affiliates
    • Security
Copyright © 2020 Unity Technologies
  • Legal
  • Privacy Policy
  • Cookies
  • Do Not Sell My Personal Information
  • Cookies Settings
"Unity", Unity logos, and other Unity trademarks are trademarks or registered trademarks of Unity Technologies or its affiliates in the U.S. and elsewhere (more info here). Other names or brands are trademarks of their respective owners.
  • Anonymous
  • Sign in
  • Create
  • Ask a question
  • Spaces
  • Default
  • Help Room
  • META
  • Moderators
  • Explore
  • Topics
  • Questions
  • Users
  • Badges