Snippets tagged “comparison”
3 snippets use this tag.
- Comparing Java enum members: == or equals()?Java
In Java, it is generally recommended to use the equals() method to compare enum members, rather than the == operator.
- How do I compare two DateTime objects in PHP 5.2.8?PHP
To compare two DateTime objects in PHP 5.2.8, you can use the DateTime::diff() method, which returns a DateInterval object representing the difference between the two dates.
- Why does comparing strings using either '==' or 'is' sometimes produce a different result?Python
When comparing strings using the '==' operator, the comparison is based on the actual characters in the string.