gpt4 book ai didi

java - 对创建对象和使用其方法感到困惑

转载 作者:行者123 更新时间:2023-11-30 04:23:10 25 4
gpt4 key购买 nike

我是面向对象编程的初学者,我需要一些答案来澄清一些事情。我有一个 MainActivity 和几个用于不同操作的类。例如,在 MainActivity 中,我从 BluetoothReceiver 类创建一个名为 mBluetoothReceiver 的对象。有一些方法可以建立和管理 BT 连接,例如 sendData。在 Nmea 类中,我得到了一些使用 BluetoothReceiver 方法的方法,因此我通过构造函数 mBluetoothReceiver 进行传递。

MainActivity 类:

public class MainActivity extends Activity {

BluetoothService mBluetoothService = new BluetoothService(this);

//create new object from Nmea class and pass mBluetoothService to mNmea
Nmea mNmea = new Nmea(mBluetoothService);
}

Nmea 等级:

public class Nmea {

BluetoothService mBluetoothService;

//constructor for Nmea for BluetoothServce object
public Nmea(BluetoothService bluetoothService) {
mBluetoothService = bluetoothService;
}

public Nmea()
{
//empty constructor {

}

//Nmea methods...
}

我的问题是,我还有 GPS 类,它也将使用 Nmea 类中的方法,但我不知道该怎么做。可以在 Nmea 类中放置空构造函数并在 GPS 类中创建 Nmea 对象吗?如果我不传入 BluetoothService 对象,蓝牙可能无法工作?在 GPS 类中,我无法创建新的 BluetoothService 连接对象并将其传递给 Nmea 构造函数,因为我在整个项目中只需要一个已建立的连接。

GPS 等级:

public çlass GPS {

Nmea gpsNmea = new Nmea();

//I need to use Nmea methods here

}

希望你能理解我的问题。有什么好的做法可以用这个东西来工作吗?谢谢!

最佳答案

你可以这样写:

public class MainActivity extends Activity {
BluetoothService mBluetoothService = new BlueToothService(this);

Nmea mNmea = new Nmea(mBluetoothService);

Gps mGps = new Gps(mNmea);
}

并且您的 Gps cconstructor 需要如下所示:

public class Gps {

private Nmea mNmea;

public Gps(Nmea nmea) {
mNmea = nmea;
}
}

如果您只需要一个 BluetoothService 类实例,则需要使用 Singleton design pattern 来编写他并将 Nmea 类中所有需要的方法声明为 public

关于java - 对创建对象和使用其方法感到困惑,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/16497021/

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