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 ? のゼロバイト。