ಠ_ಠ 偷偷說
#萬事問噗浪 12/06問程式

問一下程式課 JAVA運算 型別轉換的問題

1. public class Test {
2. public static void main(String[] args) {
3. byte a = 10, b= 1;
4. byte c = (a+b);

在第4行,eclipse跳出紅色曲折線,並提示
Multiple markers at this line
- Type mismatch: cannot convert from int to byte
- The value of the local variable c is not used