Mihao

Untitled

Feb 14th, 2019
96
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Java 0.34 KB | None | 0 0
  1. String napisA = "Kotek";
  2. String napisB = "Kotek";
  3.  
  4. // Takie coś w C# działa w Javie i Android Studio - nie zawsze daje false pomimo że napisy są takie same
  5. if( napisA == napisB)
  6. {
  7.     // true
  8.  
  9. }
  10. else
  11. {
  12.     // fasle
  13. }
  14.  
  15. // Musi to wyglądać tak by zwrócić true
  16.  
  17. if (napisA.equals(napisB))
  18. {
  19.     // true
  20. }
  21. else
  22. {
  23.     // fasle
  24. }
Add Comment
Please, Sign In to add comment