Welcome to collectivesolver - Programming & Software Q&A with code examples. A website with trusted programming answers. All programs are tested and work.

Contact: aviboots(AT)netvision.net.il

Prodentim Probiotics Specially Designed For The Health Of Your Teeth And Gums

Instant Grammar Checker - Correct all grammar errors and enhance your writing

Teach Your Child To Read

Powerful WordPress hosting for WordPress professionals

Disclosure: My content contains affiliate links.

31,037 questions

40,788 answers

573 users

How to cast from int to byte in Java

1 Answer

0 votes
public class MyClass {
    public static void main(String args[]) {
        int i = -1;
        byte b = (byte)i;
        System.out.println(b);
         
        i = 0;
        b = (byte)i;
        System.out.println(b);
         
        i = 3;
        b = (byte)i;
        System.out.println(b);
         
        i = 9999999;
        b = (byte)i;
        System.out.println(b);
    }
}
 
 
 
/*
run:
 
-1
0
3
127
 
*/

 





answered May 27, 2019 by avibootz
edited May 28, 2019 by avibootz

Related questions

4 answers 173 views
173 views asked Dec 3, 2016 by avibootz
1 answer 73 views
73 views asked May 28, 2019 by avibootz
1 answer 60 views
60 views asked May 28, 2019 by avibootz
1 answer 55 views
55 views asked Jan 2, 2022 by avibootz
1 answer 92 views
92 views asked Sep 16, 2020 by avibootz
...