Java 도구:반사 처리 객체 속성은 0 처리
1457 단어 도구류
package com.zycfc.vps.kpi.provider.util;
import java.lang.reflect.Field;
import java.math.BigDecimal;
import com.zycfc.vps.core.base.orm.homepage.keyday.po.TVpsHomepageKeyDayPo;
import lombok.Data;
import lombok.extern.slf4j.Slf4j;
@Slf4j
@Data
public class TransZeroUtils {
public int sum;
public static void setFieldValue(Object obj,String classType,String value) {
try {
Field f = obj.getClass().getDeclaredField(classType);
if(f==null) {
return;
}
f.setAccessible(true);
if(f.getType()==BigDecimal.class) {
BigDecimal o =(BigDecimal) f.get(obj);
if(o.signum()==-1) {
f.set(obj, new BigDecimal(value));
}
return;
}
if(f.getType()==String.class) {
String o=(String)f.get(obj);
if(Integer.valueOf(0)<=0) {
f.set(obj, value);
}
return;
}
if(f.getType()==Integer.class) {
Integer o=(Integer)f.get(obj);
if(o<=0) {
f.set(obj, Integer.valueOf(value));
}
return;
}
if(f.getType()==int.class) {
int o=(int)f.get(obj);
if(o<=0) {
f.set(obj, Integer.valueOf(value));
}
return;
}
} catch (Exception e) {
log.error(" ",e);
}
}
public static void main(String[] args) {
TransZeroUtils t=new TransZeroUtils();
t.setSum(-20);
System.out.println(t);
setFieldValue(t,"sum","0");
System.out.println(t);
}
}
이 내용에 흥미가 있습니까?
현재 기사가 여러분의 문제를 해결하지 못하는 경우 AI 엔진은 머신러닝 분석(스마트 모델이 방금 만들어져 부정확한 경우가 있을 수 있음)을 통해 가장 유사한 기사를 추천합니다:
5가지 자바 정렬 알고리즘 집합 도구 클래스도구류는 자바의 빠른 정렬, 힐 정렬, 삽입 정렬, 더미 정렬, 병합 정렬 다섯 가지 정렬 알고리즘을 간단명료하게 정리했다. 코드에는 이 몇 가지 정렬 알고리즘에 대한 설명이 없다. 사상 부분은 자체적으로 관련 설명...
텍스트를 자유롭게 공유하거나 복사할 수 있습니다.하지만 이 문서의 URL은 참조 URL로 남겨 두십시오.
CC BY-SA 2.5, CC BY-SA 3.0 및 CC BY-SA 4.0에 따라 라이센스가 부여됩니다.