The QByteArray class provides an array of bytes. More...
#include <qcstring.h>
Inherits QArray.
Inherited by QBitArray and QCString.
The QByteArray class provides an explicitly shared array of
bytes. It is useful for manipulating memory areas with custom
data. QByteArray is implemented as QArray Constructs a null array.
See also isNull().
Constructs a shallow copy of a.
See also assign().
Constructs an array with room for size elements.
Makes a null array if size == 0.
Note that the elements are not initialized.
See also resize() and isNull().
Constructs an array without allocating array space.
The arguments should be (0, 0). Use at own risk.
Dereferences the array data and deletes it if this was the last
reference.
Cast operator. Returns a pointer to the array.
See also data().
Shallow copy. Dereferences the current array and references the data
contained in a instead. Returns a reference to this array.
See also operator=().
Shallow copy. Dereferences the current array and references the
array data data, which contains size elements.
Returns a reference to this array.
Do not delete data later, QArray takes care of that.
Returns a reference to the element at position index in the array.
This can be used to both read and set an element.
See also operator[]().
Returns a const iterator pointing at the beginning of this array.
This iterator can be used as the iterators of QValueList and QMap
for example. In fact it does not only behave like a usual pointer:
It is a pointer.
Returns an iterator pointing at the beginning of this array.
This iterator can be used as the iterators of QValueList and QMap
for example. In fact it does not only behave like a usual pointer:
It is a pointer.
In a sorted array, finds the first occurrence of v using binary
search. For a sorted array, this is generally much faster than
find(), which does a linear search.
Returns the position of v, or -1 if v could not be found.
Returns the number of times v occurs in the array.
See also find().
Returns a deep copy of this array.
See also detach() and duplicate().
Returns the same as size().
See also size().
Returns a pointer to the actual array data.
The array is a null array if data() == 0 (null pointer).
See also isNull().
Detaches this array from shared array data, i.e. makes a private, deep
copy of the data.
Copying will only be performed if the
reference count is greater than one.
See also copy().
Reimplemented from QGArray.
Deep copy. Dereferences the current array and obtains a copy of the data
contained in a instead. Returns a reference to this array.
See also copy().
Deep copy. Dereferences the current array and obtains a copy of the
array data data instead. Returns a reference to this array.
See also copy().
Returns a const iterator pointing behind the last element of this array.
This iterator can be used as the iterators of QValueList and QMap
for example. In fact it does not only behave like a usual pointer:
It is a pointer.
Returns an iterator pointing behind the last element of this array.
This iterator can be used as the iterators of QValueList and QMap
for example. In fact it does not only behave like a usual pointer:
It is a pointer.
Fills the array with the value v. If size is specified as different
from -1, then the array will be resized before filled.
Returns TRUE if successful, or FALSE if the memory cannot be allocated
(only when size != -1).
See also resize().
Finds the first occurrence of v, starting at position index.
Returns the position of v, or -1 if v could not be found.
See also contains().
Returns TRUE if the array is empty, i.e. size() == 0, otherwise FALSE.
isEmpty() is equivalent with isNull() for QArray. Note that this is not
the case for QString::isEmpty().
Returns TRUE if the array is null, otherwise FALSE.
A null array has size() == 0 and data() == 0.
Returns the reference count for the shared array data. This reference count
is always greater than zero.
Returns TRUE if this array is different from a, otherwise FALSE.
The two arrays are bitwise compared.
See also operator==().
Assigns a shallow copy of a to this array and returns a reference
to this array.
Equivalent to assign( a ).
Returns TRUE if this array is equal to a, otherwise FALSE.
The two arrays are bitwise compared.
See also operator!=().
Returns a reference to the element at position index in the array.
This can be used to both read and set an element. Equivalent to at().
See also at().
Resets raw data that was set using setRawData().
The arguments must be the data and length that were passed to
setRawData(). This is for consistency checking.
See also setRawData().
Resizes (expands or shrinks) the array to size elements. The array
becomes a null array if size == 0.
Returns TRUE if successful, or FALSE if the memory cannot be allocated.
New elements will not be initialized.
See also size().
Sets raw data and returns a reference to the array.
Dereferences the current array and sets the new array data to data and
the new array size to size. Do not attempt to resize or re-assign the
array data when raw data has been set.
Call resetRawData(d,len) to reset the array.
Setting raw data is useful because it sets QArray data without allocating
memory or copying data.
Example I (intended use):
Example II (you don't want to do this):
Warning: If you do not call resetRawData(), QArray will attempt to
deallocate or reallocate the raw data, which might not be too good.
Be careful.
See also resetRawData().
Returns the size of the array (max number of elements).
The array is a null array if size() == 0.
See also isNull() and resize().
Sorts the array elements in ascending order, using bitwise
comparison (memcmp()).
See also bsearch().
Truncates the array at position pos.
Returns TRUE if successful, or FALSE if the memory cannot be allocated.
Equivalent to resize(pos).
See also resize().
Returns the CRC-16 checksum of len bytes starting at data.
The checksum is independent of the byte order (endianness).
Writes a byte array to a stream and returns a reference to the stream.
See also Format of the QDataStream operators
Reads a byte array from a stream and returns a reference to the stream.
See also Format of the QDataStream operators
Search the documentation, FAQ, qt-interest archive and more (uses
www.trolltech.com):
This file is part of the Qt toolkit,
copyright © 1995-2000
Trolltech, all rights reserved.Member Function Documentation
QByteArray::QByteArray ()
QByteArray::QByteArray ( const QByteArray & a )
QByteArray::QByteArray ( int size )
QByteArray::QByteArray ( int, int )
[protected]
QByteArray::~QByteArray ()
QByteArray::operator const char * () const
QByteArray & QByteArray::assign ( const QByteArray & a )
QByteArray & QByteArray::assign ( const char * data, uint size )
char & QByteArray::at ( uint index ) const
ConstIterator QByteArray::begin () const
Iterator QByteArray::begin ()
int QByteArray::bsearch ( const char & v ) const
int QByteArray::contains ( const char & v ) const
QByteArray QByteArray::copy () const
uint QByteArray::count () const
char * QByteArray::data () const
void QByteArray::detach ()
[virtual]
QByteArray & QByteArray::duplicate ( const QByteArray & a )
QByteArray & QByteArray::duplicate ( const char * data, uint size )
ConstIterator QByteArray::end () const
Iterator QByteArray::end ()
bool QByteArray::fill ( const char & v, int size = -1 )
int QByteArray::find ( const char & v, uint index=0 ) const
bool QByteArray::isEmpty () const
bool QByteArray::isNull () const
uint QByteArray::nrefs () const
bool QByteArray::operator!= ( const QByteArray & a ) const
QByteArray & QByteArray::operator= ( const QByteArray & a )
bool QByteArray::operator== ( const QByteArray & a ) const
char & QByteArray::operator[] ( int index ) const
void QByteArray::resetRawData ( const char * data, uint size )
bool QByteArray::resize ( uint size )
QByteArray & QByteArray::setRawData ( const char * data, uint size )
static char bindata[] = { 231, 1, 44, ... };
QByteArray a;
a.setRawData( bindata, sizeof(bindata) ); // a points to bindata
QDataStream s( a, IO_ReadOnly ); // open on a's data
s >> <something>; // read raw bindata
a.resetRawData( bindata, sizeof(bindata) ); // finished
static char bindata[] = { 231, 1, 44, ... };
QByteArray a, b;
a.setRawData( bindata, sizeof(bindata) ); // a points to bindata
a.resize( 8 ); // will crash
b = a; // will crash
a[2] = 123; // might crash
// forget to resetRawData - will crash
uint QByteArray::size () const
void QByteArray::sort ()
bool QByteArray::truncate ( uint pos )
Related Functions
Q_UINT16 qChecksum (const char * data, uint len)
QDataStream & operator<< (QDataStream & s, const QByteArray & a)
QDataStream & operator>> (QDataStream & s, QByteArray & a)
Copyright © 2000 Trolltech Trademarks