Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- String napisA = "Kotek";
- String napisB = "Kotek";
- // Takie coś w C# działa w Javie i Android Studio - nie zawsze daje false pomimo że napisy są takie same
- if( napisA == napisB)
- {
- // true
- }
- else
- {
- // fasle
- }
- // Musi to wyglądać tak by zwrócić true
- if (napisA.equals(napisB))
- {
- // true
- }
- else
- {
- // fasle
- }
Add Comment
Please, Sign In to add comment