猿问

Java字符串获取

怎样在class B中获取class A中字符串a的内容
public class A{
String a="Abc"
}
public class B{

}

ususudusj
浏览 1312回答 2
2回答

fatewa

package Demo; /** 第一个类 */ class A { private String a = "Abc"; public String getA() { return a; } } /** 第二个类 */ class B { /** 生成一个新的A对象对通过写好的get方法传递到B对象中 */ private String b = ""; public void setB() { b = new A().getA(); /** 将A中的字符串传递过来 */ } public String getB() { return b; } } /** 测试类 */ public class Main { public static void main(String[] args) { B b = new B(); System.out.println("传递前 String b -> " + b.getB()); b.setB(); System.out.println("传递后 String b -> " + b.getB()); } }
随时随地看视频慕课网APP

相关分类

Android
Java
我要回答