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 发布文章使用:只允许注册用户才可以访问!


  • 相关阅读:
    jquery Combo Select 下拉框可选可输入插件
    EF 二级缓存 EFSecondLevelCache
    ASP.NET web.config中的连接字符串
    C# Aspose word 替换指定键值数据
    vs2015提示中文
    c# String.Join 和 Distinct 方法 去除字符串中重复字符
    How do I learn mathematics for machine learning?
    Machine Learning Books Suggested by Michael I. Jordan from Berkeley
    PCA,SVD
    【机器学习Machine Learning】资料大全
  • 原文地址:https://www.cnblogs.com/xgqfrms/p/9366186.html
Copyright © 2011-2022 走看看