在Whistler附近的滑雪場纜車支柱於週二發生倒塌意外,一台纜車懸掛在結冰的河川上,上面的乘客已經被救出。
gondola [








dangle[






His keys dangled from a chain.
snap [




The dog snapped my leg.
He snapped the stick in two.
為什麼我馬上想到貓纜呢......科科
Simple is beautiful
Who has knowledge of the power of your wrath, or who takes note of the weight of your passion?
So give us knowledge of the number of our days, that we may get a heart of wisdom.
Come back, O Lord; how long? let your purpose for your servants be changed.
In the morning give us your mercy in full measure; so that we may have joy and delight all our days.
Make us glad in reward for the days of our sorrow, and for the years in which we have seen evil.
Make your work clear to your servants, and your glory to their children.
Let the pleasure of the Lord our God be on us: O Lord, give strength to the work of our hands.
int main(void)
{
char *n = new char[32];
delete n;
delete n;
return 1;
}
int main(void)
{
char *n = new char[32];
delete n;
n = NULL;
delete n;
n = NULL;
return 1;
}
std::vector<int> v;
v.push_back(0);
std::vector<int>::iterator vi = v.begin();
while(vi != v.end())
{
if(*vi == 0)
{
v.erase(vi++);
continue;
}
++vi;
}