这只是问题的一部分。它有错误,在运行它时缺少1个必需的位置参数'mm'。 我知道问题是它像time_to_minutes((h,mm)一样运行,) 我该怎么做才能让它像time_to_minutes(h,mm)一样运行?
private Rectangle m_normalBounds;
@Override
public void setExtendedState(int state)
{
if (getExtendedState() == 0)
m_bounds = getBounds(); // Capture the normal bounds since the state is changing
super.setExtendedState(state);
}
private Rectangle getNormalBounds() // Always returns the normal bounds
{
Rectangle bounds;
if (getExtendedState() == 0)
return(getBounds());
return(m_normalBounds);
}