📄 qtpointerref.html
字号:
<TD ALIGN="right" VALIGN="top" WIDTH="1%"><FONT SIZE="-1"><CODE> void</CODE></FONT></TD><TD><CODE><B><A HREF="../../quicktime/util/QTPointerRef.html#copyToArray(int, double[], int, int)">copyToArray</A></B>(int ptrOffset, double[] destArray, int destOffset, int length)</CODE><BR> An efficient double[] copy that copies length doubles from the pointer to the double array.</TD></TR><TR BGCOLOR="white" CLASS="TableRowColor"><TD ALIGN="right" VALIGN="top" WIDTH="1%"><FONT SIZE="-1"><CODE> void</CODE></FONT></TD><TD><CODE><B><A HREF="../../quicktime/util/QTPointerRef.html#copyToArray(int, float[], int, int)">copyToArray</A></B>(int ptrOffset, float[] destArray, int destOffset, int length)</CODE><BR> An efficient float[] copy that copies length floats from the pointer to the float array.</TD></TR><TR BGCOLOR="white" CLASS="TableRowColor"><TD ALIGN="right" VALIGN="top" WIDTH="1%"><FONT SIZE="-1"><CODE> void</CODE></FONT></TD><TD><CODE><B><A HREF="../../quicktime/util/QTPointerRef.html#copyToArray(int, int[], int, int)">copyToArray</A></B>(int ptrOffset, int[] destArray, int destOffset, int length)</CODE><BR> An efficient int[] copy that copies length ints from the pointer to the int array.</TD></TR><TR BGCOLOR="white" CLASS="TableRowColor"><TD ALIGN="right" VALIGN="top" WIDTH="1%"><FONT SIZE="-1"><CODE> void</CODE></FONT></TD><TD><CODE><B><A HREF="../../quicktime/util/QTPointerRef.html#copyToArray(int, long[], int, int)">copyToArray</A></B>(int ptrOffset, long[] destArray, int destOffset, int length)</CODE><BR> An efficient long[] copy that copies length longs from the pointer to the long array.</TD></TR><TR BGCOLOR="white" CLASS="TableRowColor"><TD ALIGN="right" VALIGN="top" WIDTH="1%"><FONT SIZE="-1"><CODE> void</CODE></FONT></TD><TD><CODE><B><A HREF="../../quicktime/util/QTPointerRef.html#copyToArray(int, short[], int, int)">copyToArray</A></B>(int ptrOffset, short[] destArray, int destOffset, int length)</CODE><BR> An efficient short[] copy that copies length shorts from the pointer to the short array.</TD></TR><TR BGCOLOR="white" CLASS="TableRowColor"><TD ALIGN="right" VALIGN="top" WIDTH="1%"><FONT SIZE="-1"><CODE> byte[]</CODE></FONT></TD><TD><CODE><B><A HREF="../../quicktime/util/QTPointerRef.html#getBytes()">getBytes</A></B>()</CODE><BR> Returns a copy of the data of the pointer as a byte array</TD></TR><TR BGCOLOR="white" CLASS="TableRowColor"><TD ALIGN="right" VALIGN="top" WIDTH="1%"><FONT SIZE="-1"><CODE> int</CODE></FONT></TD><TD><CODE><B><A HREF="../../quicktime/util/QTPointerRef.html#getSize()">getSize</A></B>()</CODE><BR> Returns the size of the QTPionter</TD></TR><TR BGCOLOR="white" CLASS="TableRowColor"><TD ALIGN="right" VALIGN="top" WIDTH="1%"><FONT SIZE="-1"><CODE> java.lang.String</CODE></FONT></TD><TD><CODE><B><A HREF="../../quicktime/util/QTPointerRef.html#toString()">toString</A></B>()</CODE><BR> A String representation of the class.</TD></TR></TABLE> <A NAME="methods_inherited_from_class_quicktime.QTObject"><!-- --></A><TABLE BORDER="1" CELLPADDING="3" CELLSPACING="0" WIDTH="100%"><TR BGCOLOR="#EEEEFF" CLASS="TableSubHeadingColor"><TD><B>Methods inherited from class quicktime.<A HREF="../../quicktime/QTObject.html">QTObject</A></B></TD></TR><TR BGCOLOR="white" CLASS="TableRowColor"><TD><CODE><A HREF="../../quicktime/QTObject.html#disposeQTObject()">disposeQTObject</A>, <A HREF="../../quicktime/QTObject.html#equals(java.lang.Object)">equals</A>, <A HREF="../../quicktime/QTObject.html#ID(quicktime.QTObject)">ID</A></CODE></TD></TR></TABLE> <A NAME="methods_inherited_from_class_java.lang.Object"><!-- --></A><TABLE BORDER="1" CELLPADDING="3" CELLSPACING="0" WIDTH="100%"><TR BGCOLOR="#EEEEFF" CLASS="TableSubHeadingColor"><TD><B>Methods inherited from class java.lang.Object</B></TD></TR><TR BGCOLOR="white" CLASS="TableRowColor"><TD><CODE>getClass, hashCode, notify, notifyAll, wait, wait, wait</CODE></TD></TR></TABLE> <P><!-- ============ FIELD DETAIL =========== --><!-- ========= CONSTRUCTOR DETAIL ======== --><!-- ============ METHOD DETAIL ========== --><A NAME="method_detail"><!-- --></A><TABLE BORDER="1" CELLPADDING="3" CELLSPACING="0" WIDTH="100%"><TR BGCOLOR="#CCCCFF" CLASS="TableHeadingColor"><TD COLSPAN=1><FONT SIZE="+2"><B>Method Detail</B></FONT></TD></TR></TABLE><A NAME="getSize()"><!-- --></A><H3>getSize</H3><PRE>public int <B>getSize</B>()</PRE><DL><DD>Returns the size of the QTPionter<DD><DL></DL></DD></DL><HR><A NAME="getBytes()"><!-- --></A><H3>getBytes</H3><PRE>public byte[] <B>getBytes</B>()</PRE><DL><DD>Returns a copy of the data of the pointer as a byte array<DD><DL></DL></DD><DD><DL><DT><B>Returns:</B><DD>a byte array - copy of pointer data</DL></DD></DL><HR><A NAME="copyToArray(int, byte[], int, int)"><!-- --></A><H3>copyToArray</H3><PRE>public final void <B>copyToArray</B>(int ptrOffset, byte[] destArray, int destOffset, int length)</PRE><DL><DD>An efficient byte[] copy that copies length bytes from the pointer to the byte array.<DD><DL></DL></DD><DD><DL><DT><B>Parameters:</B><DD><CODE>ptrOffset</CODE> - the byte offset from the pointer to copy the bytes from<DD><CODE>destArray</CODE> - the destination byte array<DD><CODE>destOffset</CODE> - the offset within the byte array to start copying to<DD><CODE>length</CODE> - the number of bytes to copy</DL></DD></DL><HR><A NAME="copyToArray(int, short[], int, int)"><!-- --></A><H3>copyToArray</H3><PRE>public final void <B>copyToArray</B>(int ptrOffset, short[] destArray, int destOffset, int length)</PRE><DL><DD>An efficient short[] copy that copies length shorts from the pointer to the short array.<DD><DL></DL></DD><DD><DL><DT><B>Parameters:</B><DD><CODE>ptrOffset</CODE> - the byte offset from the pointer to copy the shorts from<DD><CODE>destArray</CODE> - the destination short array<DD><CODE>destOffset</CODE> - the offset within the short array to start copying to<DD><CODE>length</CODE> - the number of shorts to copy</DL></DD></DL><HR><A NAME="copyToArray(int, char[], int, int)"><!-- --></A><H3>copyToArray</H3><PRE>public final void <B>copyToArray</B>(int ptrOffset, char[] destArray, int destOffset, int length)</PRE><DL><DD>An efficient char[] copy that copies length chars from the pointer to the char array.<DD><DL></DL></DD><DD><DL><DT><B>Parameters:</B><DD><CODE>ptrOffset</CODE> - the byte offset from the pointer to copy the chars from<DD><CODE>destArray</CODE> - the destination char array<DD><CODE>destOffset</CODE> - the offset within the char array to start copying to<DD><CODE>length</CODE> - the number of chars to copy</DL></DD></DL><HR><A NAME="copyToArray(int, int[], int, int)"><!-- --></A><H3>copyToArray</H3><PRE>public final void <B>copyToArray</B>(int ptrOffset, int[] destArray, int destOffset, int length)</PRE><DL><DD>An efficient int[] copy that copies length ints from the pointer to the int array.<DD><DL></DL></DD><DD><DL><DT><B>Parameters:</B><DD><CODE>ptrOffset</CODE> - the byte offset from the pointer to copy the ints from<DD><CODE>destArray</CODE> - the destination int array<DD><CODE>destOffset</CODE> - the offset within the int array to start copying to<DD><CODE>length</CODE> - the number of ints to copy</DL></DD></DL><HR><A NAME="copyToArray(int, float[], int, int)"><!-- --></A><H3>copyToArray</H3><PRE>public final void <B>copyToArray</B>(int ptrOffset, float[] destArray, int destOffset, int length)</PRE><DL><DD>An efficient float[] copy that copies length floats from the pointer to the float array.<DD><DL></DL>
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -