for example suppose that we have the classes A, B, C, D, E
现在,A有公开的静态变量
我希望这一变量只出现在A和B级,而不是C、D、E。
如果不使变数得到保护和利用遗产,这样做是可能的吗?
for example suppose that we have the classes A, B, C, D, E
现在,A有公开的静态变量
我希望这一变量只出现在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 ;
}
}
......
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 ...
Check this, List<String> list = new ArrayList<String>(); for (int i = 0; i < 10000; i++) { String value = (""+UUID.randomUUID().getLeastSignificantBits()).substring(3, ...
I am in the middle of solving a problem where I think it s best suited for a decorator and a state pattern. The high level setting is something like a sandwich maker and dispenser, where I have a set ...
I have been trying to execute a MS SQL Server stored procedure via JDBC today and have been unsuccessful thus far. The stored procedure has 1 input and 1 output parameter. With every combination I ...
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 ...
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 ...
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....
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 ...