zoukankan      html  css  js  c++  java
  • xgqfrms™, xgqfrms® : xgqfrms's offical website of GitHub!

    OOP === Object Oriented Programming

    OOP

    OOP === Object Oriented Programming: Class / Constructor Function ???

    
    function handleModalIds() {
        console.log(`Modal`);
    }
    
    function handleAccordionIds() {
        console.log(`Accordion`);
    }
    
    function handleCarouselIds() {
        console.log(`Carousel`);
    }
    
    function handleTabsIds() {
        console.log(`Tabs`);
    }
    
    function handleAllIds(){
        console.log(`all in one!`);
        handleModalIds();
        handleAccordionIds();
        handleCarouselIds();
        handleTabsIds();
    }
    
    handleAllIds();
    
    const allIdsHandler = {
        handleModalIds: () => {
            console.log(`Modal`);
        },
        handleAccordionIds: () => {
            console.log(`Accordion`);
        },
        handleCarouselIds: () => {
            console.log(`Carousel`);
        },
        handleTabsIds: () => {
            console.log(`Tabs`);
        },
        init: () => {
            console.log(`all in one!`);
            this.handleModalIds();
            this.handleAccordionIds();
            this.handleCarouselIds();
            this.handleTabsIds();
        }
    };
    
    allIdsHandler.init();
    
    

    renovation 改造

    class

    
    class AllIdsHandlerClass {
        constructor(name) {
          this.name = name || AllIdsHandlerClass.name;
          // 构造函数在实例化的时候,立即执行 init()
          this.init();
        }
        handleModalIds() {
            console.log(`Modal`);
        }
        handleAccordionIds() {
            console.log(`Accordion`);
        }
        handleCarouselIds() {
            console.log(`Carousel`);
        }
        handleTabsIds() {
            console.log(`Tabs`);
        }
        init() {
            console.log(`all in one!`);
            this.handleModalIds();
            this.handleAccordionIds();
            this.handleCarouselIds();
            this.handleTabsIds();
        }
    };
    
    const test = new AllIdsHandlerClass(`test`);
    
    /*
    all in one!
    Modal
    Accordion
    Carousel
    Tabs
    */
    
    // OOP === Object Oriented Programming:  Class / Constructor Function 
    
    
    
    
    "use strict";
    
    /**
     * 
     * @author xgqfrms
     * @license MIT
     * @copyright xgqfrms
     * 
     * @description AllInOne
     * @augments 
     * @example 
     * 
     */
    
    // const AllInOne = (datas = [], debug = false) => {
    //     let result = ``;
    //     // do something...
    //     return result;
    // };
    
    
    
    // export default AllInOne;
    
    // export {
    //     AllInOne,
    // };
    
    
    function handleModalIds() {
        console.log(`Modal`);
    }
    
    function handleAccordionIds() {
        console.log(`Accordion`);
    }
    
    function handleCarouselIds() {
        console.log(`Carousel`);
    }
    
    function handleTabsIds() {
        console.log(`Tabs`);
    }
    
    function handleAllIds(){
        console.log(`all in one!`);
        handleModalIds();
        handleAccordionIds();
        handleCarouselIds();
        handleTabsIds();
    }
    
    handleAllIds();
    
    const allIdsHandler = {
        handleModalIds: () => {
            console.log(`Modal`);
        },
        handleAccordionIds: () => {
            console.log(`Accordion`);
        },
        handleCarouselIds: () => {
            console.log(`Carousel`);
        },
        handleTabsIds: () => {
            console.log(`Tabs`);
        },
        init: () => {
            console.log(`all in one!`);
            this.handleModalIds();
            this.handleAccordionIds();
            this.handleCarouselIds();
            this.handleTabsIds();
        }
    };
    
    allIdsHandler.init();
    
    // OOP === Object Oriented Programming:  Class / Constructor Function ???
    
    
    
    

    refs



    ©xgqfrms 2012-2020

    www.cnblogs.com 发布文章使用:只允许注册用户才可以访问!


  • 相关阅读:
    java 大数据处理类 BigDecimal 解析
    关于纠正 C/C++ 之前在函输内改变 变量的一个错误想法。
    C++ 制作 json 数据 并 传送给服务端(Server) 的 php
    介绍一个很爽的 php 字符串特定检索函数---strpos()
    如何 判断 设备 是否 连接 上 了 wifi
    android 通过访问 php 接受 or 传送数据
    正则匹配抓取input 隐藏输入项和 <td>标签内的内容
    手把手教你Chrome扩展开发:本地存储篇
    HTML5之本地存储localstorage
    初尝CDN:什么是分布式服务节点?
  • 原文地址:https://www.cnblogs.com/xgqfrms/p/9366186.html
Copyright © 2011-2022 走看看