public
static
<T>T test(T datas){
return
datas;
}
public
static
void
main(String[] args) {
String s=
"123"
;
ServiceResponse a=creatBySuccess(s);
ServiceResponse b=creatBySuccessMessage(s);
ServiceResponse c=
new
ServiceResponse(
0
,s);
ServiceResponse d=
new
ServiceResponse(
0
,
"321"
);
ServiceResponse e=
new
ServiceResponse(
0
,
"123"
);
ServiceResponse f=
new
ServiceResponse(
0
,test(
"123"
));
System.out.println(
""
);
}