【电影《赛德克·巴莱》观后感】我认为台湾同胞不该与日本军人开战。这是一场不可能打赢的战争。既然打不赢,就不应该去打。否则只能作出无谓的牺牲,让年轻人、孩子和妇女白白送命,甚至导致整个民族几近灭绝。
……
顺便说一句,我觉得台湾赛德克族同胞没有见过更可耻更可恶的统治者。日本统治者当时至少没有没收他们的全部土地和财产,没有搞个大跃进活活饿死无数百姓,没有发动文革让他们夫妻反目互相揭发互相批斗。更加可耻的统治者他们没见过。
……
新浪微博链接在这里。
Mutex function | Description |
---|---|
CreateMutex | Creates or opens a named or unnamed mutex object. |
CreateMutexEx | Creates or opens a named or unnamed mutex object and returns a handle to the object. |
OpenMutex | Opens an existing named mutex object. |
ReleaseMutex | Releases ownership of the specified mutex object. |
Event function | Description |
---|---|
CreateEvent | Creates or opens a named or unnamed event object. |
CreateEventEx | Creates or opens a named or unnamed event object and returns a handle to the object. |
OpenEvent | Opens an existing named event object. |
PulseEvent | Sets the specified event object to the signaled state and then resets it to the nonsignaled state after releasing the appropriate number of waiting threads. |
ResetEvent | Sets the specified event object to the nonsignaled state. |
SetEvent | Sets the specified event object to the signaled state. |
Semaphore function | Description |
---|---|
CreateSemaphore | Creates or opens a named or unnamed semaphore object. |
CreateSemaphoreEx | Creates or opens a named or unnamed semaphore object and returns a handle to the object. |
OpenSemaphore | Opens an existing named semaphore object. |
ReleaseSemaphore | Increases the count of the specified semaphore object by a specified amount. |
Critical section function | Description |
---|---|
DeleteCriticalSection | Releases all resources used by an unowned critical section object. |
EnterCriticalSection | Waits for ownership of the specified critical section object. |
InitializeCriticalSection | Initializes a critical section object. |
InitializeCriticalSectionAndSpinCount | Initializes a critical section object and sets the spin count for the critical section. |
InitializeCriticalSectionEx | Initializes a critical section object with a spin count and optional flags. |
LeaveCriticalSection | Releases ownership of the specified critical section object. |
SetCriticalSectionSpinCount | Sets the spin count for the specified critical section. |
TryEnterCriticalSection | Attempts to enter a critical section without blocking. |
霍夫曼树 |
iterator lower_bound ( const key_type& x );
const_iterator lower_bound ( const key_type& x ) const;