byte a;
byte b = 'a' - 'A';


a = (byte)('A' ^ b);

뭐 간단히 이런건데
('A' ^ b) 하면 값이 어떤식으로 저장되길래 앞에 byte로 형변환시켜주는거임?

int?

- dc official App