C++中用try catch拋出異常

在學數據中,發現書上的代碼段中對輸入錯誤的數據進行throw 處理,之前沒搞懂,如今查資料弄一弄。ios 這是線性表插入的代碼spa void List::insert(int n,int x) { if(n<1||n>100)throw"溢出"; if(n>=len)throw"位置"; for(int i=len-1;i>=n-1;i--) { data[i+1]=data[i]
相關文章
相關標籤/搜索