當前位置:首頁 » 編程語言 » java空對象

java空對象

發布時間: 2022-10-25 17:47:03

⑴ 一個java對象到底佔用多大內存

Object o=new Object():
在java中空對象佔八個位元組,對象的引用佔四個位元組。所以上面那條語句所佔的空間是4byte+8byte=12byte.java中的內存是以8的倍數來分配的,所以分配的內存是16byte.
舉個例子:
Class O{
int i;
byte j;
String s;
}
其所佔內存的大小是空對象(8)+int(4)+byte(1)+String引用(4)=17byte,因要是8的整數倍,所以其佔大小為24byte.
當然,如果類里有其他對象的話,也要把其他對象的空間算進去

⑵ java中一個void修飾的方法無返回值,那麼有是不是返回一個空對象,有空對象這種說法嗎

空對象是指null。void表示沒有返回,包括沒有返回空對象。
你可以測試下void方法內部,return null;是會報編譯錯誤的。只能return;

⑶ java對象為空的判斷

/**
*判斷對象或對象數組中每一個對象是否為空:對象為null,字元序列長度為0,集合類、Map為empty
*
*@paramobj
*@return
*/
(Objectobj){
if(obj==null)
returntrue;

if(objinstanceofCharSequence)
return((CharSequence)obj).length()==0;

if(objinstanceofCollection)
return((Collection)obj).isEmpty();

if(objinstanceofMap)
return((Map)obj).isEmpty();

if(objinstanceofObject[]){
Object[]object=(Object[])obj;
if(object.length==0){
returntrue;
}
booleanempty=true;
for(inti=0;i<object.length;i++){
if(!isNullOrEmpty(object[i])){
empty=false;
break;
}
}
returnempty;
}
returnfalse;
}
應用場景:
讀取excel文件,轉化為一個二維數組:Object[][]arrays
但是excel中有空行,所以需要過濾Object[][]arrays中的空的一維數組:
Java代碼
/***
*過濾數組中的空元素
*
*
*@paramarrays
*@return
*/
publicstaticObject[][]filterEmpty(Object[][]arrays){
intsumNotNull=0;
/***
*統計非空元素的總個數
*/
for(inti=0;i<arrays.length;i++){
Objectobject=arrays[i];
if(!ValueWidget.isNullOrEmpty(object)
&&!SystemUtil.isNullOrEmpty((Object[])object)){//判斷元素是否為空
sumNotNull=sumNotNull+1;
}
}
Object[][]filtedObjs=newObject[sumNotNull][];
intindex=0;
for(inti=0;i<arrays.length;i++){
Object[]object_tmp=arrays[i];
if(!ValueWidget.isNullOrEmpty(object_tmp)
&&!SystemUtil.isNullOrEmpty((Object[])object_tmp)){//判斷元素是否為空
filtedObjs[index++]=object_tmp;
}
}
returnfiltedObjs;
}
判斷對象的所有成員變數是否為空
Java代碼
/***
*Determinewhethertheobject'sfieldsareempty
*
*@paramobj
*@paramisExcludeZero:true:數值類型的值為0,則當做為空;----false:數值類型的值為0,則不為空
*
*@return
*@throwsSecurityException
*@
*@throwsNoSuchFieldException
*@throwsIllegalAccessException
*/
(Objectobj,booleanisExcludeZero)
throwsSecurityException,IllegalArgumentException,
NoSuchFieldException,IllegalAccessException{
if(ValueWidget.isNullOrEmpty(obj)){//對象本身就為null
returntrue;
}
List<Field>fieldList=ReflectHWUtils.getAllFieldList(obj.getClass());
booleanisNull=true;
for(inti=0;i<fieldList.size();i++){
Fieldf=fieldList.get(i);
ObjectpropertyValue=null;
try{
propertyValue=getObjectValue(obj,f);
}catch(NoSuchFieldExceptione){
e.printStackTrace();
}

if(!ValueWidget.isNullOrEmpty(propertyValue)){//欄位不為空
if(){//是數字
if(!((Integer)propertyValue==0&&isExcludeZero)){
isNull=false;
break;
}
}elseif(propertyValueinstanceofDouble){//是數字
if(!((Double)propertyValue==0&&isExcludeZero)){
isNull=false;
break;
}
}elseif(propertyValueinstanceofFloat){//是數字
if(!((Float)propertyValue==0&&isExcludeZero)){
isNull=false;
break;
}
}elseif(propertyValueinstanceofShort){//是數字
if(!((Short)propertyValue==0&&isExcludeZero)){
isNull=false;
break;
}
}else{
isNull=false;
break;
}
}
}
returnisNull;
}
測試:
Java代碼
@Test
publicvoidtest_isNullObject()throwsSecurityException,
IllegalArgumentException,NoSuchFieldException,
IllegalAccessException{
Person2p=newPerson2();
Assert.assertEquals(true,ReflectHWUtils.isNullObject(p,true));
Assert.assertEquals(false,ReflectHWUtils.isNullObject(p,false));

p.setAddress("beijing");
Assert.assertEquals(false,ReflectHWUtils.isNullObject(p,true));
Assert.assertEquals(false,ReflectHWUtils.isNullObject(p,false));

p.setAddress(null);
p.setId(0);
Assert.assertEquals(true,ReflectHWUtils.isNullObject(p,true));
Assert.assertEquals(false,ReflectHWUtils.isNullObject(p,false));

}
Person2源代碼(省略getter,setter方法):
Java代碼
importjava.sql.Timestamp;

publicclassPerson2{
privateintid;
privateintage;
privatedoubleweight;
privateStringpersonName;
privateTimestampbirthdate;
publicStringidentitify;
protectedStringaddress;
Stringphone;

}

⑷ java中如何判斷一個對象是不是為空

Item item = new Item();這個對象肯定是為空的
錯了,這個對象已經分配了內存,不是空的,用System.out.println(item)列印就知道已經存在地址,如果是空,列印null;

判斷一個對象是否為空,就是按那個條件判斷,沒有錯,System.out.println();是控制台比較實用的調試,測試方法

⑸ java 怎樣判斷一個對象是否為空

Item item = new Item();這個對象肯定是為空的
錯了,這個對象已經分配了內存,不是空的,用System.out.println(item)列印就知道已經存在地址,如果是空,列印null;

判斷一個對象是否為空,就是按那個條件判斷,沒有錯,System.out.println();是控制台比較實用的調試,測試方法

⑹ Java中判斷對象為空的問題

  • 首先來看一下工具StringUtils的判斷方法:
    一種是org.apache.commons.lang3包下的;
    另一種是org.springframework.util包下的。這兩種StringUtils工具類判斷對象是否為空是有差距的:

    StringUtils.isEmpty(CharSequence cs); //org.apache.commons.lang3包下的StringUtils類,判斷是否為空的方法參數是字元序列類,也就是String類型StringUtils.isEmpty(Object str); //而org.springframework.util包下的參數是Object類,也就是不僅僅能判斷String類型,還能判斷其他類型,比如Long等類型。12345

  • 從上面的例子可以看出第二種的StringUtils類更實用。

    下面來看一下org.apache.commons.lang3的StringUtils.isEmpty(CharSequence cs)源碼:public static boolean isEmpty(final CharSequence cs) { return cs == null || cs.length() == 0;



    接下來是org.springframework.util的StringUtils.isEmpty(Object str)源碼:public static boolean isEmpty(Object str) { return (str == null || "".equals(str));



    基本上判斷對象是否為空,StringUtils.isEmpty(Object str)這個方法都能搞定。

    接下來就是判斷數組是否為空

    list.isEmpty(); //返回boolean類型。


⑺ java程序中使用空對象會出現什麼錯誤

java程序中使用空對象
如果是對空對象賦值 不會報錯
而對其取值 就會 拋出一個異常 NullPoniterException 空指針異常
你可以用 try ....catch 語句捕獲這個異常 就不會報錯了

⑻ java中怎麼判斷一個對象是不是為空

這樣寫是存在問題的,如果pb為空,pb.equals(null))會出現空指針異常.
if(null == pb)
System.out.println("為空");
else
System.out.println("不為空");

熱點內容
比亞迪唐dmi哪個配置值得買 發布:2025-01-04 05:50:17 瀏覽:169
內存儲器的功能 發布:2025-01-04 05:50:11 瀏覽:679
sqlcountsum 發布:2025-01-04 05:49:24 瀏覽:233
linux怎麼改ip 發布:2025-01-04 05:39:32 瀏覽:477
c語言mallocfree 發布:2025-01-04 05:38:49 瀏覽:267
台式電腦在哪裡設置密碼鎖 發布:2025-01-04 05:36:27 瀏覽:631
msg編譯路徑 發布:2025-01-04 05:36:26 瀏覽:666
雷霆戰機電腦腳本 發布:2025-01-04 05:26:43 瀏覽:995
原神在哪裡下載安卓手機 發布:2025-01-04 05:21:50 瀏覽:378
csr2安卓正式服在哪裡 發布:2025-01-04 05:17:33 瀏覽:222