我有一个java类:
public class httpd implements Runnable
{
public void createHttpdStatistics
{
httpdStatistics stats = new httpdStastics(this);
}
}
现在我将在另一个类中获取在stats
httpd 中创建的对象。当 httpd 对象启动时,它在 jvm 中执行。我很难在 httpd 类中构建 get 方法,但是当我在另一个类中时,我如何获得确切的 httpd 对象来调用 get 方法来检索 stats 对象?
编辑
public class httpd implements Runnable
{
public static void main(String[] args)
{
httpd server = new httpd();
OtherClass oc = new OtherClass(server);
}
{
MY OWN MAIN
public class myownmain
{
public static void main(String[] args)
{
//Here I need OtherClass object created in httpd class
}
}