admin 管理员组

文章数量: 887021


2024年1月11日发(作者:控件名称不可用)

Java代码1. /**

2. * 判断对象是否为空

3. *

4. * @param obj

5. * @return

6. */

7. public static boolean isEmpty(Object obj) {

8. boolean result = true;

9. if (obj == null) {

10. return true;

11. }

12. if (obj instanceof String) {

13. result = (ng().trim().length() == 0) || ng().trim().equals(“null”);

14. } else if (obj instanceof Collection) {

15. result = ((Collection) obj).size() == 0;

16. } else {

17. result = ((obj == null) || (ng().trim().length() < 1)) ? true : false;

18. }

19. return result;

20. }

[java]1. /

2.

判断对象是否为空

3.

4.

@param obj

5. @return

6. */

7. public static boolean isEmpty(Object obj) {

8. boolean result = true;

9. if (obj == null) {

10. return true;

11. }

12. if (obj instanceof String) {

13. result = (ng().trim().length() == 0) || ng().trim().equals(“null”);

14. } else if (obj instanceof Collection) {

15. result = ((Collection) obj).size() == 0;

16. } else {

17. result = ((obj == null) || (ng().trim().length() < 1)) ? true : false;

18. }

19. return result;

20. }


本文标签: 控件 是否 名称 对象 作者