Merge branch 'master' of git.haw-hamburg.de:pm1-tutorium/slides

This commit is contained in:
Henri Burau
2020-03-25 15:42:13 +01:00
2 changed files with 10 additions and 11 deletions

View File

@ -18,7 +18,7 @@ long b = a;
Umwandlung in einen kleineren Wertebereich ist nur **explizit** möglich.
```java
int d = 3;
byte c = (byte) a;
byte c = (byte) (d);
```
![bg right 75%](https://miro.medium.com/max/423/1*LQFhTJnVcsXhlQzrgjQIqQ.png)