Home Backend Development PHP Tutorial php策略模式的有关问题~下~多谢 帮改下下面的代码

php策略模式的有关问题~下~多谢 帮改下下面的代码

Jun 13, 2016 pm 01:35 PM
class function public quot

php策略模式的问题~~~高手指点下~~谢谢 帮改下下面的代码
我把学武术 和使用武器做成了接口,行为做成了类 但怎么用都是很乱,,高手指点下。完了立刻给分

PHP code
<!--

Code highlighting produced by Actipro CodeHighlighter (freeware)
http://www.CodeHighlighter.com/

--><?php abstract class person{
    
    abstract public  function speak();
    public $a;
    public $wq;
    public function studywx($wx){
        $a=new $wx;
        return $a;
    }
    public function usewq($wq){
        $a=new $wq;
        return $wq;
    }
}
class chperson extends  person{
    public function speak(){
        echo "中国人在说话,各路让行!~";
    }
}
class amperson extends  person{
    public function speak(){
        echo "美国人在说,叽叽喳喳!~";
    }
}
class enperson extends  person{
    public function speak(){
        echo "英国人在叫,汪汪汪~";
    }
}
interface istudy{
    public function studywx();
    public function studyyy();
}
class studyw implements istudy{
    public function studywx(){
        echo "学习武术";
    }
}
class studtq implements istudy{
    public function studywx(){
        echo "学习泰拳";
    }
}
interface iwq{
    public function usewq();
}
class jian implements iwq{
    public function usewq(){
            echo "用剑"
        }

}
class qiang implements iwq{
    public function usewq(){
            echo "用洋枪"
        }

}
class xiaoqiang implements iwq{
    public function usewq(){
            echo "用小米加布枪"
        }

}
$chperson=new chperson();
$chperson->studywx(studtq);
$chperson->usewq(xiaoqiang);
$chperson->studywx(studtq);
$amperson=new amperson();
$amperson->studywx(studyw);
$amperson->usewq(xiaoqiang);
$amperson->studywx(qiang);


?>
Copy after login


------解决方案--------------------
稍微简化了你的例子,看注释应该清晰多了吧
PHP code
<?php abstract class person{
    abstract public function speak();
    public $a;
    public $wq;
    public function studywx($wx){
         $wx->studywx();
    }
    public function usewq($wq){
        $wq->usewq();
    }
}
class chperson extends  person{
    public function speak(){
        echo "中国人在说话,各路让行!~";
    }
}
class amperson extends  person{
    public function speak(){
        echo "美国人在说,叽叽喳喳!~";
    }
}

interface istudy{
    public function studywx();
}
class studyw implements istudy{
    public function studywx(){
        echo "如来神掌";
    }
}
class studtq implements istudy{
    public function studywx(){
        echo "葵花宝典";
    }
}

interface iwq{
    public function usewq();
}
class jian implements iwq{
    public function usewq(){
        echo "倚天剑";
    }
}
class qiang implements iwq{
    public function usewq(){
        echo "洋枪";
    }
}

$chiness=new chperson();//上来个中国人
$chiness->studywx(new studyw()); //给本如来神掌学
$chiness->usewq(new jian());//给他把倚天剑

$american=new amperson();//上来个美国人
$american->studywx(new studtq());//给本葵花宝典学
$american->usewq(new qiang());//给他个破洋枪 <div class="clear">
                 
              
              
        
            </div>
Copy after login
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

Hot AI Tools

Undresser.AI Undress

Undresser.AI Undress

AI-powered app for creating realistic nude photos

AI Clothes Remover

AI Clothes Remover

Online AI tool for removing clothes from photos.

Undress AI Tool

Undress AI Tool

Undress images for free

Clothoff.io

Clothoff.io

AI clothes remover

AI Hentai Generator

AI Hentai Generator

Generate AI Hentai for free.

Hot Article

R.E.P.O. Energy Crystals Explained and What They Do (Yellow Crystal)
2 weeks ago By 尊渡假赌尊渡假赌尊渡假赌
Hello Kitty Island Adventure: How To Get Giant Seeds
1 months ago By 尊渡假赌尊渡假赌尊渡假赌
Two Point Museum: All Exhibits And Where To Find Them
1 months ago By 尊渡假赌尊渡假赌尊渡假赌

Hot Tools

Notepad++7.3.1

Notepad++7.3.1

Easy-to-use and free code editor

SublimeText3 Chinese version

SublimeText3 Chinese version

Chinese version, very easy to use

Zend Studio 13.0.1

Zend Studio 13.0.1

Powerful PHP integrated development environment

Dreamweaver CS6

Dreamweaver CS6

Visual web development tools

SublimeText3 Mac version

SublimeText3 Mac version

God-level code editing software (SublimeText3)

How to use classes and methods in Python How to use classes and methods in Python Apr 21, 2023 pm 02:28 PM

Concepts and instances of classes and methods Class (Class): used to describe a collection of objects with the same properties and methods. It defines the properties and methods common to every object in the collection. Objects are instances of classes. Method: Function defined in the class. Class construction method __init__(): The class has a special method (construction method) named init(), which is automatically called when the class is instantiated. Instance variables: In the declaration of a class, attributes are represented by variables. Such variables are called instance variables. An instance variable is a variable modified with self. Instantiation: Create an instance of a class, a specific object of the class. Inheritance: that is, a derived class (derivedclass) inherits the base class (baseclass)

What does function mean? What does function mean? Aug 04, 2023 am 10:33 AM

Function means function. It is a reusable code block with specific functions. It is one of the basic components of a program. It can accept input parameters, perform specific operations, and return results. Its purpose is to encapsulate a reusable block of code. code to improve code reusability and maintainability.

What is the difference between the developer version and the public version of iOS? What is the difference between the developer version and the public version of iOS? Mar 01, 2024 pm 12:55 PM

Every year before Apple releases a new major version of iOS and macOS, users can download the beta version several months in advance and experience it first. Since the software is used by both the public and developers, Apple has launched developer and public versions, which are public beta versions of the developer beta version, for both. What is the difference between the developer version and the public version of iOS? Literally speaking, the developer version is a developer test version, and the public version is a public test version. The developer version and the public version target different audiences. The developer version is used by Apple for testing by developers. You need an Apple developer account to download and upgrade it.

Replace the class name of an element using jQuery Replace the class name of an element using jQuery Feb 24, 2024 pm 11:03 PM

jQuery is a classic JavaScript library that is widely used in web development. It simplifies operations such as handling events, manipulating DOM elements, and performing animations on web pages. When using jQuery, you often encounter situations where you need to replace the class name of an element. This article will introduce some practical methods and specific code examples. 1. Use the removeClass() and addClass() methods jQuery provides the removeClass() method for deletion

What does class mean in python? What does class mean in python? May 21, 2019 pm 05:10 PM

Class is a keyword in Python, used to define a class. The method of defining a class: add a space after class and then add the class name; class name rules: capitalize the first letter. If there are multiple words, use camel case naming, such as [class Dog()].

How SpringBoot encrypts and protects class files through custom classloader How SpringBoot encrypts and protects class files through custom classloader May 11, 2023 pm 09:07 PM

Background Recently, key business codes have been encrypted for the company framework to prevent the engineering code from being easily restored through decompilation tools such as jd-gui. The configuration and use of the related obfuscation scheme are relatively complex and there are many problems for the springboot project, so the class files are encrypted and then passed The custom classloder is decrypted and loaded. This solution is not absolutely safe. It only increases the difficulty of decompilation. It prevents gentlemen but not villains. The overall encryption protection flow chart is shown in the figure below. Maven plug-in encryption uses custom maven plug-in to compile. The class file specified is encrypted, and the encrypted class file is copied to the specified path. Here, it is saved to resource/corecla.

Detailed explanation of PHP Class usage: Make your code clearer and easier to read Detailed explanation of PHP Class usage: Make your code clearer and easier to read Mar 10, 2024 pm 12:03 PM

When writing PHP code, using classes is a very common practice. By using classes, we can encapsulate related functions and data in a single unit, making the code clearer, easier to read, and easier to maintain. This article will introduce the usage of PHPClass in detail and provide specific code examples to help readers better understand how to apply classes to optimize code in actual projects. 1. Create and use classes In PHP, you can use the keyword class to define a class and define properties and methods in the class.

php提交表单通过后,弹出的对话框怎样在当前页弹出,该如何解决 php提交表单通过后,弹出的对话框怎样在当前页弹出,该如何解决 Jun 13, 2016 am 10:23 AM

php提交表单通过后,弹出的对话框怎样在当前页弹出php提交表单通过后,弹出的对话框怎样在当前页弹出而不是在空白页弹出?想实现这样的效果:而不是空白页弹出:------解决方案--------------------如果你的验证用PHP在后端,那么就用Ajax;仅供参考:HTML code

See all articles