Specify the parameter class in php

Source: Internet
Author: User
Public & nbsp; function & nbsp; execute (PwThreadDataSource & nbsp; $ ds) & nbsp ;{$ this-& gt; _ ds & nbsp ;=& nbsp; $ ds; php does not specify the parameter type when declaring variables.
public function execute(PwThreadDataSource $ds) {
$this->_ds = $ds;


Php does not specify the type when declaring Variables. Why does this parameter specify the type of PwThreadDataSource? And this is an abstract class. isn't it possible to declare an object? I don't understand. Is it a polymorphism?
Abstract class PwThreadDataSource {

Protected $ urlArgs = array ();

/**
* Obtain the number of Post statistics
*
* @ Return int
*/
Abstract public function getTotal ();

/**
* Get Post
*
* @ Param int $ limit get entries
* @ Param int $ offset the starting offset of the post
* @ Return array
*/
Abstract public function getData ($ limit, $ offset );

------ Solution --------------------
Execute (PwThreadDataSource $ ds)
This $ ds parameter is a form parameter. this declaration only serves to stipulate that the caller can pass in objects of the PwThreadDataSource class or its subclass for the code in the function to call.
This is also done to coordinate the encoding. at least I don't need to read comments or code to know what parameters should be passed in.

Contact Us

The content source of this page is from Internet, which doesn't represent Alibaba Cloud's opinion; products and services mentioned on that page don't have any relationship with Alibaba Cloud. If the content of the page makes you feel confusing, please write us an email, we will handle the problem within 5 days after receiving your email.

If you find any instances of plagiarism from the community, please send an email to: info-contact@alibabacloud.com and provide relevant evidence. A staff member will contact you within 5 working days.

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.