20.11.2014 Views

OHJELMOINTITEKNIIKKA

OHJELMOINTITEKNIIKKA

OHJELMOINTITEKNIIKKA

SHOW MORE
SHOW LESS

Create successful ePaper yourself

Turn your PDF publications into a flip-book with our unique Google optimized e-Paper software.

Esimerkki (bittioperaatiot)<br />

public class Maski {<br />

public static void main(String[] args) {<br />

final int LUKU = 1; //001<br />

final int KIRJOITUS = 2; //010<br />

final int SUORITUS = 4; //100<br />

int liput = 0;<br />

liput |= LUKU; //liput = 001<br />

liput |= KIRJOITUS; //liput = 011<br />

}<br />

}<br />

if ((liput & KIRJOITUS) == KIRJOITUS)<br />

System.out.println(”On oikeus kirjoittaa”);<br />

38

Hooray! Your file is uploaded and ready to be published.

Saved successfully!

Ooh no, something went wrong!