{{theTime}}

Search This Blog

Total Pageviews

assert keyword vs identifier

Does this code compiles?

boolean assert  = false ;
if ( assert )

Java1.4 and above:  No compilation error
Java1.3 : Compiles.  'assert' is not keyword in java1.3.  To compile use
javac -source 1.3 Classname.java

No comments:

Setup AWS Application Load Balancer Https

Setting up HTTPS for an AWS Application Load Balancer (ALB) involves configuring an HTTPS listener, deploying an SSL certificate, and defini...