Reformat code and add cJSON_print function
This commit is contained in:
parent
d3912107c4
commit
9e1c3a9abd
@ -3,11 +3,11 @@ using namespace std;
|
||||
void temperature(int t)
|
||||
{
|
||||
try{
|
||||
if(t==100) throw "沸点!";
|
||||
else if(t==0) throw "冰点!";
|
||||
if(t==100) throw "It's at the boiling point.";
|
||||
else if(t==0) throw "It reached the freezing point";
|
||||
else cout<<"the temperature is OK..."<<endl;
|
||||
}
|
||||
catch(int x){cout<<"temperatore="<<x<<endl;}
|
||||
catch(int x){cout<<"temperature="<<x<<endl;}
|
||||
catch(char const*s){cout<<s<<endl;}
|
||||
}
|
||||
int main(){
|
||||
|
@ -17,9 +17,9 @@ class DiskNotFound:public FileSysException{
|
||||
public:
|
||||
char *Where(){return "DiskNotFound...";}
|
||||
};
|
||||
void main(){
|
||||
int main(){
|
||||
try{
|
||||
..... //³ÌÐò´úÂë
|
||||
// ..... //³ÌÐò´úÂë
|
||||
throw FileSysException();
|
||||
}
|
||||
catch(DiskNotFound p){cout<<p.Where()<<endl;}
|
||||
@ -27,7 +27,7 @@ void main(){
|
||||
catch(FileSysException p){cout<<p.Where()<<endl;}
|
||||
catch(BasicException p){cout<<p.Where()<<endl;}
|
||||
try{
|
||||
..... //³ÌÐò´úÂë
|
||||
// ..... //³ÌÐò´úÂë
|
||||
throw DiskNotFound();
|
||||
}
|
||||
catch(BasicException p){cout<<p.Where()<<endl;}
|
||||
|
Loading…
Reference in New Issue
Block a user