gpt4 book ai didi

java - 如何在java中创建动态全局变量

转载 作者:行者123 更新时间:2023-11-30 05:23:00 28 4
gpt4 key购买 nike

你好,我是java新手,我想创建一个变量,该变量将是基于字符串条件的不同类的对象。我不知道该怎么做。

这就是我想解释的内容

public class Foo {
Object obj; // I want this variable to be dynamic based on the condition in the constructor
public Foo(String str){ // Constructor
if(str.equals("bar")){
this.obj = new Bar();
}
else{
this.obj = new Baz();
}
}

我想要这样,因为稍后我将使用这个 obj 变量来调用 Bar 或 Baz 中的方法,它们都实现了名称相同但代码不同的方法。

最佳答案

请查看这段java代码,你就会明白如何使用接口(interface)来解决这个问题

package com.company;

public class Main {
public static void main(String[] args) {
Foo foo = new Foo("bar");
foo.obj.hello();
}
}

class Foo {
Ba obj;

Foo(String str) { // Constructor
if (str.equals("bar")) {
this.obj = new Bar();
} else {
this.obj = new Baz();
}
}
}

interface Ba {
void hello();
}

class Bar implements Ba {
public void hello(){
System.out.println(" Hello Bar");
}
}

class Baz implements Ba {
public void hello(){
System.out.println(" Hello Baz");
}
}

关于java - 如何在java中创建动态全局变量,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/59212978/

28 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com