Als «short» getaggte Fragen

78
Primitiver Typ 'Short' - Casting in Java

Ich habe eine Frage zum primitiven Typ shortin Java. Ich benutze JDK 1.6. Wenn ich folgendes habe: short a = 2; short b = 3; short c = a + b; Der Compiler möchte nicht kompilieren - er sagt, dass er "nicht von int nach short konvertieren kann" und schlägt vor, dass ich eine Besetzung mache...

72
Integer Summing Blues, kurz + = kurzes Problem

Programm in C #: short a, b; a = 10; b = 10; a = a + b; // Error : Cannot implicitly convert type 'int' to 'short'. // we can also write this code by using Arithmetic Assignment Operator as given below a += b; // But this is running successfully, why? Console.Write(a);