瑞士伯恩
一定要到老城區來逛逛,於1983年被聯合國列為世界文化遺產,
古色古香的老城區,
位於萊茵河支流的阿勒河的彎曲處,
著名的景點有:
時鐘塔,
熊公園,
伯恩大教堂,
等等,
時鐘塔建於十三世紀初,
最初用途為西城門的守衛塔,
歷時八百多年,
經歷多次整修,
時鐘塔至今依舊是熱門觀光景點,
除了時鐘塔以外,
瑞士聯邦國會大廈也在伯恩,
這是瑞士政府與議會的所在地,
於附近的玫瑰園,
可以眺望舊城區與阿勒河,
愛因斯坦也曾在伯恩居住過七年,
其故居也完整保留在伯恩
這裡指定資料要從this(lession2acttivity)傳遞到show_msg_activity.classIntent intent = new Intent(this,show_msg_activity.class);
將輸入的文字存到字串messageString message =entext.getText().toString();
intent.putExtra(Extra_Message,message);
將message的文字存到Extra_Message="com.example.xyaw.lesson2.Message";傳遞資料startActivity(intent);
Intent intent = getIntent();
String msg = intent.getStringExtra(lesson2Activity.Extra_Message);
接收傳遞的資料
TextView targettxt = (TextView) findViewById(R.id.id_final_text);
targettxt.setText(msg);
最後將其秀在第二頁的TextView中diff --git a/mkfs.ubifs/hashtable/hashtable_itr.c b/mkfs.ubifs/hashtable/hashtable_itr.c index 24f4dde..d102453 100644 --- a/mkfs.ubifs/hashtable/hashtable_itr.c +++ b/mkfs.ubifs/hashtable/hashtable_itr.c @@ -35,18 +35,6 @@ hashtable_iterator(struct hashtable *h) } /*****************************************************************************/ -/* key - return the key of the (key,value) pair at the current position */ -/* value - return the value of the (key,value) pair at the current position */ - -void * -hashtable_iterator_key(struct hashtable_itr *i) -{ return i->e->k; } - -void * -hashtable_iterator_value(struct hashtable_itr *i) -{ return i->e->v; } - -/*****************************************************************************/ /* advance - advance the iterator to the next element * returns zero if advanced to end of table */ diff --git a/mkfs.ubifs/hashtable/hashtable_itr.h b/mkfs.ubifs/hashtable/hashtable_itr.h index 87a97eb..5c94a04 100644 --- a/mkfs.ubifs/hashtable/hashtable_itr.h +++ b/mkfs.ubifs/hashtable/hashtable_itr.h @@ -28,7 +28,7 @@ hashtable_iterator(struct hashtable *h); /* hashtable_iterator_key * - return the value of the (key,value) pair at the current position */ -extern inline void * +static inline void * hashtable_iterator_key(struct hashtable_itr *i) { return i->e->k; @@ -37,7 +37,7 @@ hashtable_iterator_key(struct hashtable_itr *i) /*****************************************************************************/ /* value - return the value of the (key,value) pair at the current position */ -extern inline void * +static inline void * hashtable_iterator_value(struct hashtable_itr *i) { return i->e->v;
}