Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
以下の関数をJavaにどのようにマップしますか?
VOID WriteToStruct(BOOL *Status, STRUCT_MSG RecBuff)
この関数の機能: 1) 構造体 RecBuff を生成します 2) ステータスを更新します
Java でブール ポインターにマップし、関数によって更新された構造体データにアクセスするにはどうすればよいですか?
ByReference クラスを使用して、参照によって値を渡すことができます。BOOL が int であると仮定すると、IntegerByReference を使用できます。