Share via


RandomAccessFile.WriteFloat(Single) Method

Definition

Converts the float argument to an int using the floatToIntBits method in class Float, and then writes that int value to the file as a four-byte quantity, high byte first.

[Android.Runtime.Register("writeFloat", "(F)V", "")]
public void WriteFloat (float v);
[<Android.Runtime.Register("writeFloat", "(F)V", "")>]
abstract member WriteFloat : single -> unit
override this.WriteFloat : single -> unit

Parameters

v
Single

a float value to be written.

Implements

Attributes

Exceptions

if an I/O error occurs while writing to this file.

Remarks

Converts the float argument to an int using the floatToIntBits method in class Float, and then writes that int value to the file as a four-byte quantity, high byte first. The write starts at the current position of the file pointer.

Java documentation for java.io.RandomAccessFile.writeFloat(float).

Portions of this page are modifications based on work created and shared by the Android Open Source Project and used according to terms described in the Creative Commons 2.5 Attribution License.

Applies to

See also