class="p0" style="margin-top: 0px; margin-bottom: 0px;">IFlyable fly = new Bird();
fly.Fly(); //正确
Bird fly = new Bird();
fly.Fly(); //错误
class MyDispose { ~MyDispose() { ...//在这里写释放资源的代码 } }
哈希表存取操作原理
for(int j=0; j<nums.Length-1; j++)
{
for(int i=0;i<nums.Length-1-j;i++)
{
if(nums[i]>nums[i+1])
{
int temp=num[i];
nums[i]=nums[i+1];
nums[i+1]=temp;
}
}
}