如何把操作符:: 变成类?可以调用?

WBOY
Release: 2016-06-06 20:19:04
Original
1183 people have browsed it

官方下载的SDK是用操作符来操作的,和平时用的 new 一个对象似乎不一样?
我现在像转换成New一个对象,然后我调用这个对象的函数来操作,该怎么处理?

回复内容:

官方下载的SDK是用操作符来操作的,和平时用的 new 一个对象似乎不一样?
我现在像转换成New一个对象,然后我调用这个对象的函数来操作,该怎么处理?

范围解析操作符(也可称作 Paamayim Nekudotayim)或者更简单地说是一对冒号,可以用于访问静态成员,类常量,还可以用于覆盖类中的属性和方法
对于静态的方法或常量,只能开始的时候就载入,没办法通过new关键字来获得实例。

您是指C++吗?C++的话::后可以写class的成员函数。如果实例化对象的话,new就可以,然后如果class有构造方法,按照构造方法的参数传入实参。

Related labels:
php
source:php.cn
Statement of this Website
The content of this article is voluntarily contributed by netizens, and the copyright belongs to the original author. This site does not assume corresponding legal responsibility. If you find any content suspected of plagiarism or infringement, please contact admin@php.cn
Popular Tutorials
More>
Latest Downloads
More>
Web Effects
Website Source Code
Website Materials
Front End Template