Java 中的友元类
友元类是C++的功能,用于访问类的非公共成员。 Java不支持friend关键字,但我们可以实现该功能。
本篇文章介绍如何在 Java 中创建友元类。
Java 中的友元类
友元概念也可以用 Java 实现。 例如,来自公司不同部门的两个同事。
两位同事互不认识,但有些工作需要合作。 让我们根据朋友模式将一名员工设置为 Jack,另一名员工设置为 Michelle。
我们需要创建两个包并实现这两个类来实现此示例。
Department(package) Jiyik 中的 Jack 类:
package Jiyik1;
import Jiyik2.Michelle;
public final class Jack {
static {
// Declare classes in the Jiyik2 package as 'friends'
Michelle.setInstance(new Michelle_Implement());
}
// Constructor is Only accessible by 'friend' classes.
Jack() {
}
// This Method is Only accessible by 'friend' classes.
void HelloJiyik() {
System.out.println("Hello! I am Jack from Jiyik");
}
static final class Michelle_Implement extends Michelle {
protected Jack createJack() {
return new Jack();
}
protected void sayHello(Jack jack) {
jack.HelloJiyik();
}
}
}
Jiyik2 中的 Michelle 类(包):
package Jiyik2;
import Jiyik1.Jack;
public abstract class Michelle {
private static Michelle instance;
static Michelle getInstance() {
Michelle a = instance;
if (a != null) {
return a;
}
return createInstance();
}
private static Michelle createInstance() {
try {
Class.forName(Jack.class.getName(), true,
Jack.class.getClassLoader());
} catch (ClassNotFoundException e) {
throw new IllegalStateException(e);
}
return instance;
}
public static void setInstance(Michelle michelle) {
if (instance != null) {
throw new IllegalStateException("Michelle instance already set");
}
instance = michelle;
}
protected abstract Jack createJack();
protected abstract void sayHello(Jack jack);
}
实现main方法的类:
package Jiyik2;
import Jiyik1.Jack;
public final class Friend_Class {
public static void main(String[] args) {
Michelle michelle = Michelle.getInstance();
Jack jack = michelle.createJack();
michelle.sayHello(jack);
}
}
上面的代码使用不同包中的两个类实现了 Java 中的友元类功能。 Michelle 类充当访问 Jack 类成员的友元类。
输出:
Hello! I am Jack from Jiyik
相关文章
Java 错误 Java.Security.InvalidKeyException: Illegal Key Size
发布时间:2023/07/15 浏览次数:98 分类:Java
-
本篇文章介绍包含 java.security.InvalidKeyException: Illegal key size 的 Java 代码。 然后,我们将了解其可能的原因。最后,它通过消除指定的错误来引导我们找到解决方案。
Java 错误 Java.SQL.SQLException: Access Denied for User Root@Localhost
发布时间:2023/07/15 浏览次数:71 分类:Java
-
本篇文章介绍如何解决 Java 中的 java.sql.SQLException: Access Denied for user 'root'@'localhost' 错误。修复 Java 中的 java.sql.SQLException: Access denied for user 'root'@'localhost' (using password: YES)
Java 异常 Java.Lang.ClassNotFoundeException: Sun.Jdbc.Odbc.JdbcOdbcDriver
发布时间:2023/07/15 浏览次数:105 分类:Java
-
本篇文章介绍了 Java 中的 java.lang.ClassNotFoundException: sun.jdbc.odbc.JdbcOdbcDriver 错误。修复 Java 中的 java.lang.ClassNotFoundException: sun.jdbc.odbc.JdbcOdbcDriver
Java 错误 Gateway Process Exited Before Sending Its Port Number
发布时间:2023/07/15 浏览次数:104 分类:Java
-
本篇文章介绍了 Java 中 Java gateway process exited before sending the driver its port number 错误 Java gateway process exited before sending the driver its port number 错误
修复 Java 中 Java.Net.BindException: Address Already in Use: Bind 错误
发布时间:2023/07/15 浏览次数:76 分类:Java
-
本篇文章介绍了 Java 中的 java.net.BindException:Address already in use: Bind 错误。修复Java 中的 java.net.BindException:Address already in use: Bind
修复 Java 中 Java.Net.SocketException: Broken Pipe 错误
发布时间:2023/07/15 浏览次数:162 分类:Java
-
本篇文章介绍了使用 Java 编程的 java.net.SocketException: Broken pipeline 错误,并重点介绍了其可能的原因和解决方案。错误描述、原因及解决方法
Java 异常 Java.Lang.ClassNotFoundException: Org.SpringFramework.Web.Servlet.Dis
发布时间:2023/07/15 浏览次数:179 分类:Java
-
今天关于 Java 的文章将介绍错误 java.lang.ClassNotFoundException: org.springframework.web.servlet.DispatcherServlet。什么是 java.lang.ClassNotFoundException: org.springframework.web.servlet.DispatcherServlet
Java 抛出运行时异常 Throw Runtime Exception
发布时间:2023/07/15 浏览次数:146 分类:Java
-
本篇文章介绍如何在 Java 中引发运行时异常。Java 抛出运行时异常 Runtime Exception 是所有 Java 异常的父类,这些异常发生时会导致程序崩溃或崩溃。
Java 中抛出新异常 Throw New Exception
发布时间:2023/07/15 浏览次数:130 分类:Java
-
本文将展示如何使用 if ... else 条件语句生成错误。 我们还将使用示例和解释来讨论该主题,以使该主题更容易。在 Java 中生成一个简单错误