当您定义一个包含您不想实现的方法的接口(interface)时,Golang中是否有等同于在Python中引发NotImplementedException的方法?这是地道的Golang语言吗?例如:typeMyInterfaceinterface{Method1()boolMethod2()bool}//ImplementthisinterfacetypeThingstruct{}func(t*Thing)Method1()bool{returntrue}func(t*Thing)Method2()bool{//Idon'twanttoimplementthisyet}