16-6-重名与覆盖

Posted zhangyu666

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了16-6-重名与覆盖相关的知识,希望对你有一定的参考价值。

<!DOCTYPE html>
<html lang="en">
<head>
    <meta charset="UTF-8">
    <title>Title</title>
    <style>
        body 
            font-family: "Microsoft YaHei", serif;
        

        body, dl, dd, p, h1, h2, h3, h4, h5, h6 
            margin: 0;
        

        ol, ul, li 
            margin: 0;
            padding: 0;
            list-style: none;
        

        img 
            border: none
        
    </style>
</head>
<body>

<script>
    // 定义过程中,多个var声明重名,我们只需要留最后一个
    //           多个函数声明重名,只留最后一个函数
    //           var和function重名,无论先后只留function

    function a() 
        alert(1)
    
    var a;
    alert(a);
    // 只留function  返回函数体
</script>
</body>
</html>

 

以上是关于16-6-重名与覆盖的主要内容,如果未能解决你的问题,请参考以下文章

javascript js函数重名后面的覆盖前面的

08ROS重名问题

Python3基础 父,子类普通方法重名 子类方法覆盖父类方法

Python3基础 父,子类普通方法重名 子类方法覆盖父类方法

当前对象this

linux下复制文件时提示overwrite该怎么办?