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)
|
void temperature(int t)
|
||||||
{
|
{
|
||||||
try{
|
try{
|
||||||
if(t==100) throw "沸点!";
|
if(t==100) throw "It's at the boiling point.";
|
||||||
else if(t==0) throw "冰点!";
|
else if(t==0) throw "It reached the freezing point";
|
||||||
else cout<<"the temperature is OK..."<<endl;
|
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;}
|
catch(char const*s){cout<<s<<endl;}
|
||||||
}
|
}
|
||||||
int main(){
|
int main(){
|
||||||
|
@ -17,9 +17,9 @@ class DiskNotFound:public FileSysException{
|
|||||||
public:
|
public:
|
||||||
char *Where(){return "DiskNotFound...";}
|
char *Where(){return "DiskNotFound...";}
|
||||||
};
|
};
|
||||||
void main(){
|
int main(){
|
||||||
try{
|
try{
|
||||||
..... //³ÌÐò´úÂë
|
// ..... //³ÌÐò´úÂë
|
||||||
throw FileSysException();
|
throw FileSysException();
|
||||||
}
|
}
|
||||||
catch(DiskNotFound p){cout<<p.Where()<<endl;}
|
catch(DiskNotFound p){cout<<p.Where()<<endl;}
|
||||||
@ -27,7 +27,7 @@ void main(){
|
|||||||
catch(FileSysException p){cout<<p.Where()<<endl;}
|
catch(FileSysException p){cout<<p.Where()<<endl;}
|
||||||
catch(BasicException p){cout<<p.Where()<<endl;}
|
catch(BasicException p){cout<<p.Where()<<endl;}
|
||||||
try{
|
try{
|
||||||
..... //³ÌÐò´úÂë
|
// ..... //³ÌÐò´úÂë
|
||||||
throw DiskNotFound();
|
throw DiskNotFound();
|
||||||
}
|
}
|
||||||
catch(BasicException p){cout<<p.Where()<<endl;}
|
catch(BasicException p){cout<<p.Where()<<endl;}
|
||||||
|
Loading…
Reference in New Issue
Block a user