3 ms·
No shot this is _ever_ what is actually meant by ‘if urlA == urlB’
by TheNightman 2y ago
No shot this is _ever_ what is actually meant by ‘if urlA == urlB’
- hn_throwaway_99 2y agoWell, remember, this is Java, so `if (urlA == urlB)` just does standard object equality, the IP lookup is only done for `if (urlA.equals(urlB))` :)
- layer8 2y agoYes. Use the newer URI class instead if you want a value object without “smarts”. URL instances also contain a URLStreamHandler, which means that two URL instances that compare equal can still have different URLStreamHandlers that handle the URL differently. Instances of the class URL are really service objects.