Abilitare JavaScript per vedere questo sito.

Operatore di comparazione bytearray.

Sintassi

bool operator==(const bytearray &in source) const

source

Array di byte sorgente

Risultato

Rende true se l'array di byte sorgente è lo stesso (dimensione, contenuto) dell'array attuale, false altrimenti

Esempio di utilizzo:

bytearray data1;

bytearray data1_copy = data1;

 

/* Copia il contenuto di data0 in data0_copy */

bool eq0 = (data1.copy == data1); /* Rende valore true */

 

data1_copy.set_uint8(0, 0xff);

bool eq1 = (data1.copy == data1); /* Rende valore false */

 

 

  

Keyboard Navigation

F7 for caret browsing
Hold ALT and press letter

This Info: ALT+q
Page Header: ALT+h
Topic Header: ALT+t
Topic Body: ALT+b
Contents: ALT+c
Search: ALT+s
Exit Menu/Up: ESC