I have a choice here. Two opinions:
One is to read an XML file, which is about one page long, twice and try to find out if I can find a certain attribute value and assign it to a string or not. First time is to find out if the attribute exists and not null. Second time to read and assign the value.
If([xmlAttribute]!= null){
string = xmlAttribute;
}
Two is just read the same XML file once and try to assign the value directly without try to find it first. If failed, it will throw an exception and the catch block will assign the string to null.
try{
string = [xmlAttribute];
}catch(Exception ex){
string = null;
}
Which way is faster? Or any better idea?
Thanks.
See Question&Answers more detail:
os 与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…