if (opt == 1) { funcInst.func1(); } else if (opt == 2) { funcInst.func2(); } else { System.out.print("Invalid Option"); } | switch(opt) { case 1 : funcInst.func1() ; break; case 2 : funcInst.func2() ; break; default : System.out.print("Invalid Option"); break; } |
How to get URL of commentator
-
We sometimes get questions about how to get the web address/URL of a
commentator in our blog. Blogger.com has not provided any way to do that.
However, the...
7 years ago
No comments:
Post a Comment