English 中文(简体)
是否可能产生一个固定变量,只有两个类别才能使用?
原标题:Is it possible to create a static variable that will only be accessed by two classes?

for example suppose that we have the classes A, B, C, D, E

现在,A有公开的静态变量

我希望这一变量只出现在A和B级,而不是C、D、E。

如果不使变数得到保护和利用遗产,这样做是可能的吗?

问题回答

如果你不使用任何可见度,该成员将具有一揽子的知名度,而且你可将A和B列入同一一揽子计划,C、D、E列入不同的一揽子计划。

然而,这里有一条定点:

自行安排A和B类课程,使外地违约情况(包装)可见度。 (Don t given a public,protected or private/code> specifier.

你们必须有一个固定的跳板。 在这种避风港之外,你可以作出例外规定,赶走,检查打电话,然后准许进入或拒绝进入。

Other than that, the answer lies in inheritance and other well-known OO solutions.

不可能。 如果B级只有A级,你可以使用内层。

你们可以做的是,把A和B放在单独的一揽子计划中,使一揽子计划的成员只看到变数。 要做到这一点,你就不得不放弃可见的关键词(如公开或保护)。 Java变量的缺省可见度是一揽子方案。

a 枪支和枪支是公开和静态的,但只能从A类和B类(和AB)获得。

......

public class AB
{
          private static class A
           {
                       public static int aVar ;
            }


           private static class B
           {
                        public static int bVar ;
           }
}

......





相关问题
Spring Properties File

Hi have this j2ee web application developed using spring framework. I have a problem with rendering mnessages in nihongo characters from the properties file. I tried converting the file to ascii using ...

Logging a global ID in multiple components

I have a system which contains multiple applications connected together using JMS and Spring Integration. Messages get sent along a chain of applications. [App A] -> [App B] -> [App C] We set a ...

Java Library Size

If I m given two Java Libraries in Jar format, 1 having no bells and whistles, and the other having lots of them that will mostly go unused.... my question is: How will the larger, mostly unused ...

How to get the Array Class for a given Class in Java?

I have a Class variable that holds a certain type and I need to get a variable that holds the corresponding array class. The best I could come up with is this: Class arrayOfFooClass = java.lang....

SQLite , Derby vs file system

I m working on a Java desktop application that reads and writes from/to different files. I think a better solution would be to replace the file system by a SQLite database. How hard is it to migrate ...