单项选择题

下列程序执行后,b的值应是   public class Testss {    public static void main(String args[]) {     unsigned byte b=0;     b- -;     System.out.println("b="+b);    }   }

A.-1
B.255
C.127
D.编译错误