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

Buy a domain name - Register cheap domain names from $0.99 - Namecheap

Scalable Hosting That Grows With You

Secure & Reliable Web Hosting, Free Domain, Free SSL, 1-Click WordPress Install, Expert 24/7 Support

Semrush - keyword research tool

Boost your online presence with premium web hosting and servers

Disclosure: My content contains affiliate links.

39,890 questions

51,819 answers

573 users

How to define and use constant type in Java

2 Answers

0 votes
public class MyClass {
    public static final int LEN = 100;

    public static void main(String args[]) {
        System.out.println(LEN);
        //LEN = 99; // error: cannot assign a value to final variable LEN
    }
}



/*
run:

100

*/

 



answered Jul 20, 2020 by avibootz
0 votes
public class MyClass {
    public static final int BLUE = 0x333cff;
    public static void main(String args[]) {
        System.out.println(BLUE);
        //BLUE = 0x333aaa; // error: cannot assign a value to final variable LEN
    }
}



/*
run:

3357951

*/

 



answered Jul 20, 2020 by avibootz

Related questions

1 answer 147 views
1 answer 157 views
4 answers 413 views
413 views asked May 23, 2018 by avibootz
1 answer 158 views
2 answers 184 views
184 views asked Oct 13, 2016 by avibootz
4 answers 233 views
4 answers 327 views
327 views asked Nov 2, 2015 by avibootz
...