我正在尝试了解 android 应用程序的代码。
代码定义了最后一个字节
// defines bsval to be a bytearray which has been received from the remote device
final byte[] bslval = data1.getByteArray(HRPService.BSL_VALUE);
我的问题是关于 bslval[0] 出现在代码的后面部分
try
{
Log.i(TAG, "BYTE BSL VAL =" + bslval[0]);
TextView bsltv = (TextView) findViewById(R.id.BodySensorLocation);
bsltv.setText("\t" + mContext.getString(R.string.BodySensorLocation)
+ getBodySensorLocation(bslval[0]));
}
catch (Exception e)
{
Log.e(TAG, e.toString());
}
bslval[0] 实际上是什么?bslval 的零字节?