PHP两个冒号有什么用

"类::方法名()"
静态类的调用方法
例子:
class myclass {
public static aaa () {
}
}
调用的时候就不用实例化了 NEW 什么什么的
直接调用类::方法名()
myclass::aa();