What is the 'instanceof' operator used for in Java?

前端 未结 17 876
梦毁少年i
梦毁少年i 2020-11-22 03:03

What is the instanceof operator used for? I\'ve seen stuff like

if (source instanceof Button) {
    //...
} else {
    //...
}

17条回答
  •  你的背包
    2020-11-22 03:58

    If source is an object variable, instanceof is a way of checking to see if it is a Button or not.

提交回复
热议问题