Jump to content

Overview

About This Club

This club is for people who want to share anything related to Java & Android development!
  1. What's new in this club
  2. OP, thank you for creating this thread. I wanted to create my own, but then I've decided to use forum search. I think the information from comments will be enough for me. On the other hand - learning Java is just a tip of the iceberg if we're talking about network architecture, right? I want to learn everything about it, so I can get a Cisco certification on SPOTO CLUB and become a Cisco network specialist. Where should I go next, BTW? Can someone here give me advice?
  3. Not a website to learn but if you kept going into java I think this will be helpful: https://docs.oracle.com/javase/7/docs/api/
  4. you just need to learn the basics. practice will help you progress faster =]
  5. He's asking about Java, on a Java thread. That's not a valid answer @dumdazn If you've never programmed before and want to learn Java, you should read Head First Java. It was the first book I read and it helped me with fundamentals. They have several challenges and software you build in every chapter and they properly explain every step!
  6. What are some of the key references or texts for a crash course?
  7. Its not. I joined this club so i could respond If you have a double or a float in any language, you can't expect them to be completely precise. For example, if you have two doubles double num1 = 3.0; double num2 = 3.0; It looks like they should be equal, right? But they most likely aren't. why? because floats and doubles are very precise. Here's what num1 and num2 really are: num1: 3.00000000000000000000000000000000382918 num2: 3.00000000000000000000000000000000261527 So that's why you can't compare doubles and floats with the == operator in any language really. Here's some code to correctly compare floats in c++ bool cmpf(float a, float b){ return (fabs(a - b) < 0.005f); } I guess in Java it would be something ridiculous like static boolean cmpf(double a, double b){ return (Math.abs(a - b) < 0.005); } I f***ing hate java
  8. Honestly this is worded to weird ?
  9. Yes this is the right answer. Now tell us why (==) isn't efficient to compare double variables?
  10. Can you specify it?... I dont understand is it this? Double.compare(double1,double2) == 0);
  11. You can do double1.equals(double2) Never mind it's only for string
  12. Given two double values double1 , double2, why isn’t it reliable to test their equality using: double1 == double2; ??? Comment possible code below!! If you are the first person to get this I will follow you!! HINT:
  13. You could also put nested if's but those are more complex so I left them out. if{ else{ if } } if{}
  14. I mean you're showing if statements bases on one condition only so if{} else {} but you couls try putting If Else if Else if Else So they understand they can use multiple conditions
  15. I did lol . Did you mean to say something different?
  16. Nice :) you should consider putting else if statements also ;)
  17. If & If-Else Statements An If Statement is a conditional statement. This basically means that if the program is allowed to execute a specific set of instructions, it will but, only if that condition is met. If that condition is not met the program skips over the instructions. An example of an If Statement is as followed: public class Test { public static void main(String args[]) { int x = 15; \\initialzes an integer (x) to 15 if( x < 20 ) { System.out.print("This is if statement"); \\this prints if x is less than 20 } } } An If-Else Statement works very similarly to an If Statement. The only major difference is that if your 'if' is NOT met it goes to 'else' and runs that code in the program. Instead of skipping over the conditional. An example of an If-Else Statement is as followed: public class Test { public static void main(String args[]) { int x = 30; \\like before, declares integer to a value. In this case 30 if( x < 20 ) { //if x is less than 20 (it is not) it will run the if-clause System.out.print("This is if statement"); } else{ // if the x is greater than 20 (in this situation) it runs the else-clause System.out.print("This is else statement"); } } } Some very common errors in If and If-Else Statements could be the following: if (yourCondition); \\<< IF YOU PUT A SEMICOLON HERE IT ENDS THE STATEMENT WITHOUT READING THE ACTUAL STATEMENT { //code here } That code will result in an error! -LifeElevated
  18. This topic was moved from Topics to Java & Android development Tutorials.
  19. Nice man Like the other comments said, you should elaborate on certain aspects but this is nice to begin with
  20. Could you explain what each line does please? I might get into it.
  21.  

×
  • Create New...

Important Information

We would like to place cookies on your device to help make this website better. The website cannot give you the best user experience without cookies. You can accept or decline our cookies. You may also adjust your cookie settings. Privacy Policy - Guidelines