Python 中的作用域

变量的作用域是指变量的作用范围,是程序可以访问该变量的正文区域。例如: g = 123 def function(): print(g) print(g) 程序总共有 6 行 在第 1 行,定义了变量 g 在第 4 行,在函数 function 内部访问变量 g 在第 6 行,在全局范围访问变量 g 因为可以在程序的任意位置(从

2023-01-08
MySQL 物理组成-一条更新语句是如何执行的

我们来看看一条更新语句在MySQL内部是如何执行的?以及 binlog(归档日志)和redo log(重做日志)在其中所起的重要作用。 1.一条更新语句是如何执行的 相比查询语句的执行流程,更新语句的执行流程多了两个重要的日志模块: binlog(归档日志)和redo log(重做日志) 。上一

2023-01-07
MySQL 物理组成-日志文件和数据文件

MySQL 的物理组成是咋样的呢?本文继续从物理组成这个角度来介绍 MySQL,希望大家对 MySQL 的整体架构组成能有更全面的了解。 1.物理组成 上方是 MySQL 物理组成的简单示意图,MySQL 大致上可以分为日志文件和数据文件两大部分。 日志文件包括二进制日志、InnoDB 在线 redo 日

2023-01-07
Explain the differences in the usage of foo between function foo() {} and var fo

In J**aScript, we h**e different ways to define the functions. The function foo() {} and var foo = function() { } is two different ways to define the function. Both ways h**e their benefits and different use cases; however, both give the same result when

2023-01-07
Explain the working of timers in JavaScript

In J**aScript, timers are a very noteworthy feature. As like the normal watch timer, we can start the timer at a time and execute the function or code in J**aScript after a particular time. In simple terms, we can use the timer to execute the code after s

2023-01-07
Explain the different ready states of a request in AJAX

AJAX stands for Asynchronous J**aScript and XML. It is a set of web development techniques to create interactive web applications. AJAX allows a web page to communicate with a server without reloading the page. Ready states are an important part of workin

2023-01-06
Extract a number from a string using JavaScript

In J**aScript, there are multiple ways to extract a number from a string. One way is to use the match() method and a regular expression to search for all numeric digits in the string. Another way is to use the replace() method and a regular expression to

2023-01-06
HTML 框架

框架可以理解为在网页中插入了一个独立的网页窗口元素,比较常用的框架元素是 iframe,iframe 有自己独立的窗口 window 以及上下文,iframe 元素自己内部的逻辑操作可以独立,当然在同域条件下,iframe 元素的窗口可以访问父级窗口,父级窗口也可以访问 iframe 窗口。 iframe

2023-01-06
HTML 链接

本章节介绍 HTML 页面与页面,文档与文档之间的媒介-链接,链接为客户和服务器提供了主要的交互的手段。这是一个比较常见的标签类型,几乎在所有的网站中都能看到它的身影。 1. 样式使用标签<a>设置超文本链接,链接可以是图形或者文字,当鼠标移动到链接上时,会出现一

2023-01-06
ES6+ const

1. 前言 很多情况下,我们希望我们声明的变量不能被修改。在 ES5 中不能直接声明一个常量,如果想声明一个不可修改的变量需要借助 defineProperty 方法。ES6 为了弥补这方面的缺失,新增了 const 语句用于声明一个常量。本节我们还将学习到 let、 const 、 var 的区别。 2. 语

2023-01-05

首页 导航 会员 客服