Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
2 つの Gtk ウィジェット ポインター値を比較して等しいかどうかを調べたい。どうすればできますか?通常の等価性(==)またはintへの型キャストで行うことができません...
GtkWidget *a; GtkWidget *b; if((int)a == (int)b) { /* ... */ }
ポインターはポインターです。aウィジェットをb指していて、同じウィジェットを指している場合は、 を使用してテストできますif (a == b)。
a
b
if (a == b)