(String tagValue,String value)
| 6 | |
| 7 | public class MyString { |
| 8 | public static boolean isEquals(String tagValue,String value) |
| 9 | { |
| 10 | if(isEmpty(tagValue) || isEmpty(value)) |
| 11 | return false; |
| 12 | else if(tagValue.equals(value)) |
| 13 | return true; |
| 14 | else |
| 15 | return false; |
| 16 | } |
| 17 | /** |
| 18 | * 判断对象是否为空 |
| 19 | * Object = null |