Vue3与Vue2 对比

server/2024/11/24 19:45:08/

作者:东方小月 链接:https://juejin.cn/post/7111129583713255461 来源:稀土掘金

采用选项式,组合式,setup语法糖三种方式对比

首先实现一个同样的逻辑(点击切换页面数据)看一下它们直接的区别

更多前端,python知识请移步

Vue3与Vue2 对比 -爱尚购 (0vk.top)

直接区别

选项式Api

<template>
<div @click="changeMsg">{{msg}}</div>
</template>
<script>
export default  {data(){return {msg:'hello world'}},methods:{changeMsg(){this.msg = 'hello juejin'}}
}
</script>
组合式Api
<template><div @click="changeMsg">{{msg}}</div>
</template><script>
import { ref,defineComponent } from "vue";
export default defineComponent({
setup() {const msg = ref('hello world')const changeMsg = ()=>{msg.value = 'hello juejin'}
return {msg,changeMsg
};
},
});
</script>

setup 语法糖

<template><div @click="changeMsg">{{ msg }}</div>
</template><script setup>
import { ref } from "vue";const msg = ref('hello world')
const changeMsg = () => {msg.value = 'hello juejin'
}
</script>

总结

选项式Api是将data和methods包括后面的watch,computed等分开管理,而组合式Api则是将相关逻辑放到了一起(类似于原生js开发)。

setup语法糖则可以让变量方法不用再写return,后面的组件甚至是自定义指令也可以在我们的template中自动获得。

ref 和 reactive


组合式Api

<script>
import { ref,reactive,defineComponent } from "vue";
export default defineComponent({
setup() {
let msg = ref('hello world')
let obj = reactive({name:'juejin',age:3
})
const changeData = () => {msg.value = 'hello juejin'obj.name = 'hello world'
}
return {msg,obj,changeData
};
},
});
</script>
setup语法糖
<script setup>
import { ref,reactive } from "vue";
let msg = ref('hello world')
let obj = reactive({name:'juejin',age:3
})
const changeData = () => {msg.value = 'hello juejin'obj.name = 'hello world'
}
</script>

总结

使用ref的时候在js中取值的时候需要加上.value。

reactive更推荐去定义复杂的数据类型 ref 更推荐定义基本类型

生命周期


下表包含:Vue2和Vue3生命周期的差异

Vue2(选项式API)Vue3(setup)描述
beforeCreate-实例创建前
created-实例创建后
beforeMountonBeforeMountDOM挂载前调用
mountedonMountedDOM挂载完成调用
beforeUpdateonBeforeUpdate数据更新之前被调用
updatedonUpdated数据更新之后被调用
beforeDestroyonBeforeUnmount组件销毁前调用
destroyedonUnmounted组件销毁完成调用

举个常用的onMounted的例子

选项式Api

<script>
export default  {mounted(){console.log('挂载完成')}
}
</script>
组合式Api
<script>
import { onMounted,defineComponent } from "vue";
export default defineComponent({
setup() {
onMounted(()=>{console.log('挂载完成')
})
return {
onMounted
};
},
});
</script>
setup语法糖
<script setup>
import { onMounted } from "vue";
onMounted(()=>{console.log('挂载完成')
})
</script>

从上面可以看出Vue3中的组合式API采用hook函数引入生命周期;其实不止生命周期采用hook函数引入,像watch、computed、路由守卫等都是采用hook函数实现

总结

Vue3中的生命周期相对于Vue2做了一些调整,命名上发生了一些变化并且移除了beforeCreate和created,因为setup是围绕beforeCreate和created生命周期钩子运行的,所以不再需要它们。

生命周期采用hook函数引入

watch和computed

选项式API
<template><div>{{ addSum }}</div>
</template>
<script>
export default {data() {return {a: 1,b: 2}},computed: {addSum() {return this.a + this.b}},watch:{a(newValue, oldValue){console.log(`a从${oldValue}变成了${newValue}`)}}
}
</script>
组合式Api
<template><div>{{addSum}}</div>
</template>
<script>
import { computed, ref, watch, defineComponent } from "vue";
export default defineComponent({setup() {const a = ref(1)const b = ref(2)let addSum = computed(() => {return a.value+b.value})watch(a, (newValue, oldValue) => {console.log(`a从${oldValue}变成了${newValue}`)})return {addSum};},
});
</script>
setup语法糖
<template><div>{{ addSum }}</div>
</template>
<script setup>
import { computed, ref, watch } from "vue";
const a = ref(1)
const b = ref(2)
let addSum = computed(() => {return a.value + b.value
})
watch(a, (newValue, oldValue) => {console.log(`a从${oldValue}变成了${newValue}`)
})
</script>

Vue3中除了watch,还引入了副作用监听函数watchEffect,用过之后我发现它和React中的useEffect很像,只不过watchEffect不需要传入依赖项。

那么什么是watchEffect呢?

watchEffect它会立即执行传入的一个函数,同时响应式追踪其依赖,并在其依赖变更时重新运行该函数。

比如这段代码

<template><div>{{ watchTarget }}</div>
</template>
<script setup>
import { watchEffect,ref } from "vue";
const watchTarget = ref(0)
watchEffect(()=>{console.log(watchTarget.value)
})
setInterval(()=>{watchTarget.value++
},1000)
</script>

首先刚进入页面就会执行watchEffect中的函数打印出:0,随着定时器的运行,watchEffect监听到依赖数据的变化回调函数每隔一秒就会执行一次

总结

computed和watch所依赖的数据必须是响应式的。Vue3引入了watchEffect,watchEffect 相当于将 watch 的依赖源和回调函数合并,当任何你有用到的响应式依赖更新时,该回调函数便会重新执行。不同于 watch的是watchEffect的回调函数会被立即执行,即({ immediate: true })

组件通信

Vue中组件通信方式有很多,其中选项式API和组合式API实现起来会有很多差异;这里将介绍如下组件通信方式:

方式vue2vue3
父传子propsprops
子传父$emitemits
父传子$attrsattrs
子传父$listeners无(合并到 attrs方式)
父传子provideprovide
子传父injectinject
子组件访问父组件$parent
父组件访问子组件$children
父组件访问子组件$refexpose&ref
兄弟传值EventBusmitt

props

props是组件通信中最常用的通信方式之一。父组件通过v-bind传入,子组件通过props接收,下面是它的三种实现方式

选项式API
//父组件<template><div><Child :msg="parentMsg" /></div>
</template>
<script>
import Child from './Child'
export default {components:{Child},data() {return {parentMsg: '父组件信息'}}
}
</script>//子组件<template><div>{{msg}}</div>
</template>
<script>
export default {props:['msg']
}
</script>
组合式Api
//父组件<template><div><Child :msg="parentMsg" /></div>
</template>
<script>
import { ref,defineComponent } from 'vue'
import Child from './Child.vue'
export default defineComponent({components:{Child},setup() {const parentMsg = ref('父组件信息')return {parentMsg};},
});
</script>//子组件<template><div>{{ parentMsg }}</div>
</template>
<script>
import { defineComponent,toRef } from "vue";
export default defineComponent({props: ["msg"],// 如果这行不写,下面就接收不到setup(props) {console.log(props.msg) //父组件信息let parentMsg = toRef(props, 'msg')return {parentMsg};},
});
</script>
setup语法糖

//父组件<template><div><Child :msg="parentMsg" /></div>
</template>
<script setup>
import { ref } from 'vue'
import Child from './Child.vue'
const parentMsg = ref('父组件信息')
</script>//子组件<template><div>{{ parentMsg }}</div>
</template>
<script setup>
import { toRef, defineProps } from "vue";
const props = defineProps(["msg"]);
console.log(props.msg) //父组件信息
let parentMsg = toRef(props, 'msg')
</script>

注意

props中数据流是单项的,即子组件不可改变父组件传来的值

在组合式API中,如果想在子组件中用其它变量接收props的值时需要使用toRef将props中的属性转为响应式。

emit

子组件可以通过emit发布一个事件并传递一些参数,父组件通过v-on进行这个事件的监听

选项式API

//父组件<template><div><Child @sendMsg="getFromChild" /></div>
</template>
<script>
import Child from './Child'
export default {components:{Child},methods: {getFromChild(val) {console.log(val) //我是子组件数据}}
}
</script>// 子组件<template><div><button @click="sendFun">send</button></div>
</template>
<script>
export default {methods:{sendFun(){this.$emit('sendMsg','我是子组件数据')}}
}
</script>
组合式Api

//父组件<template><div><Child @sendMsg="getFromChild" /></div>
</template>
<script>
import Child from './Child'
import { defineComponent } from "vue";
export default defineComponent({components: {Child},setup() {const getFromChild = (val) => {console.log(val) //我是子组件数据}return {getFromChild};},
});
</script>//子组件<template><div><button @click="sendFun">send</button></div>
</template><script>
import { defineComponent } from "vue";
export default defineComponent({emits: ['sendMsg'],setup(props, ctx) {const sendFun = () => {ctx.emit('sendMsg', '我是子组件数据')}return {sendFun};},
});
</script>
setup语法糖

//父组件<template><div><Child @sendMsg="getFromChild" /></div>
</template>
<script setup>
import Child from './Child'
const getFromChild = (val) => {console.log(val) //我是子组件数据}
</script>//子组件<template><div><button @click="sendFun">send</button></div>
</template>
<script setup>
import { defineEmits } from "vue";
const emits = defineEmits(['sendMsg'])
const sendFun = () => {emits('sendMsg', '我是子组件数据')
}
</script>

attrs和listeners

子组件使用$attrs可以获得父组件除了props传递的属性和特性绑定属性 (class和 style)之外的所有属性。

子组件使用$listeners可以获得父组件(不含.native修饰器的)所有v-on事件监听器,在Vue3中已经不再使用;但是Vue3中的attrs不仅可以获得父组件传来的属性也可以获得父组件v-on事件监听器

选项式API

//父组件<template><div><Child @parentFun="parentFun" :msg1="msg1" :msg2="msg2"  /></div>
</template>
<script>
import Child from './Child'
export default {components:{Child},data(){return {msg1:'子组件msg1',msg2:'子组件msg2'}},methods: {parentFun(val) {console.log(`父组件方法被调用,获得子组件传值:${val}`)}}
}
</script>//子组件<template><div><button @click="getParentFun">调用父组件方法</button></div>
</template>
<script>
export default {methods:{getParentFun(){this.$listeners.parentFun('我是子组件数据')}},created(){//获取父组件中所有绑定属性console.log(this.$attrs)  //{"msg1": "子组件msg1","msg2": "子组件msg2"}//获取父组件中所有绑定方法    console.log(this.$listeners) //{parentFun:f}}
}
</script>
组合式API

//父组件<template><div><Child @parentFun="parentFun" :msg1="msg1" :msg2="msg2" /></div>
</template>
<script>
import Child from './Child'
import { defineComponent,ref } from "vue";
export default defineComponent({components: {Child},setup() {const msg1 = ref('子组件msg1')const msg2 = ref('子组件msg2')const parentFun = (val) => {console.log(`父组件方法被调用,获得子组件传值:${val}`)}return {parentFun,msg1,msg2};},
});
</script>//子组件<template><div><button @click="getParentFun">调用父组件方法</button></div>
</template>
<script>
import { defineComponent } from "vue";
export default defineComponent({emits: ['sendMsg'],setup(props, ctx) {//获取父组件方法和事件console.log(ctx.attrs) //Proxy {"msg1": "子组件msg1","msg2": "子组件msg2"}const getParentFun = () => {//调用父组件方法ctx.attrs.onParentFun('我是子组件数据')}return {getParentFun};},
});
</script>
setup语法糖

//父组件<template><div><Child @parentFun="parentFun" :msg1="msg1" :msg2="msg2" /></div>
</template>
<script setup>
import Child from './Child'
import { ref } from "vue";
const msg1 = ref('子组件msg1')
const msg2 = ref('子组件msg2')
const parentFun = (val) => {console.log(`父组件方法被调用,获得子组件传值:${val}`)
}
</script>//子组件<template><div><button @click="getParentFun">调用父组件方法</button></div>
</template>
<script setup>
import { useAttrs } from "vue";const attrs = useAttrs()
//获取父组件方法和事件
console.log(attrs) //Proxy {"msg1": "子组件msg1","msg2": "子组件msg2"}
const getParentFun = () => {//调用父组件方法attrs.onParentFun('我是子组件数据')
}
</script>

注意

Vue3中使用attrs调用父组件方法时,方法前需要加上on;如parentFun->onParentFun

provide/inject

provide:是一个对象,或者是一个返回对象的函数。里面包含要给子孙后代属性

inject:一个字符串数组,或者是一个对象。获取父组件或更高层次的组件provide的值,既在任何后代组件都可以通过inject获得

选项式API

//父组件
<script>
import Child from './Child'
export default {components: {Child},data() {return {msg1: '子组件msg1',msg2: '子组件msg2'}},provide() {return {msg1: this.msg1,msg2: this.msg2}}
}
</script>//子组件<script>
export default {inject:['msg1','msg2'],created(){//获取高层级提供的属性console.log(this.msg1) //子组件msg1console.log(this.msg2) //子组件msg2}
}
</script>
组合式API

//父组件<script>
import Child from './Child'
import { ref, defineComponent,provide } from "vue";
export default defineComponent({components:{Child},setup() {const msg1 = ref('子组件msg1')const msg2 = ref('子组件msg2')provide("msg1", msg1)provide("msg2", msg2)return {}},
});
</script>//子组件<template><div><button @click="getParentFun">调用父组件方法</button></div>
</template>
<script>
import { inject, defineComponent } from "vue";
export default defineComponent({setup() {console.log(inject('msg1').value) //子组件msg1console.log(inject('msg2').value) //子组件msg2},
});
</script>
setup语法糖

//父组件
<script setup>
import Child from './Child'
import { ref,provide } from "vue";
const msg1 = ref('子组件msg1')
const msg2 = ref('子组件msg2')
provide("msg1",msg1)
provide("msg2",msg2)
</script>//子组件<script setup>
import { inject } from "vue";
console.log(inject('msg1').value) //子组件msg1
console.log(inject('msg2').value) //子组件msg2
</script>

说明

provide/inject一般在深层组件嵌套中使用合适。一般在组件开发中用的居多。

parent/children

$parent: 子组件获取父组件Vue实例,可以获取父组件的属性方法等

$children: 父组件获取子组件Vue实例,是一个数组,是直接儿子的集合,但并不保证子组件的顺序

Vue2
import Child from './Child'
export default {components: {Child},created(){console.log(this.$children) //[Child实例]console.log(this.$parent)//父组件实例}
}

注意 父组件获取到的$children并不是响应式的

expose&ref

$refs可以直接获取元素属性,同时也可以直接获取子组件实例

选项式API

//父组件<template><div><Child ref="child" /></div>
</template>
<script>
import Child from './Child'
export default {components: {Child},mounted(){//获取子组件属性console.log(this.$refs.child.msg) //子组件元素//调用子组件方法this.$refs.child.childFun('父组件信息')}
}
</script>//子组件 <template><div><div></div></div>
</template>
<script>
export default {data(){return {msg:'子组件元素'}},methods:{childFun(val){console.log(`子组件方法被调用,值${val}`)}}
}
</script>
组合式API

//父组件<template><div><Child ref="child" /></div>
</template>
<script>
import Child from './Child'
import { ref, defineComponent, onMounted } from "vue";
export default defineComponent({components: {Child},setup() {const child = ref() //注意命名需要和template中ref对应onMounted(() => {//获取子组件属性console.log(child.value.msg) //子组件元素//调用子组件方法child.value.childFun('父组件信息')})return {child //必须return出去 否则获取不到实例}},
});
</script>//子组件<template><div></div>
</template>
<script>
import { defineComponent, ref } from "vue";
export default defineComponent({setup() {const msg = ref('子组件元素')const childFun = (val) => {console.log(`子组件方法被调用,值${val}`)}return {msg,childFun}},
});
</script>
setup语法糖

//父组件<template><div><Child ref="child" /></div>
</template>
<script setup>
import Child from './Child'
import { ref, onMounted } from "vue";
const child = ref() //注意命名需要和template中ref对应
onMounted(() => {//获取子组件属性console.log(child.value.msg) //子组件元素//调用子组件方法child.value.childFun('父组件信息')
})
</script>//子组件<template><div></div>
</template>
<script setup>
import { ref,defineExpose } from "vue";
const msg = ref('子组件元素')
const childFun = (val) => {console.log(`子组件方法被调用,值${val}`)
}
//必须暴露出去父组件才会获取到
defineExpose({childFun,msg
})
</script>

注意

通过ref获取子组件实例必须在页面挂载完成后才能获取。

在使用setup语法糖时候,子组件必须元素或方法暴露出去父组件才能获取到

EventBus/mitt

兄弟组件通信可以通过一个事件中心EventBus实现,既新建一个Vue实例来进行事件的监听,触发和销毁。

在Vue3中没有了EventBus兄弟组件通信,但是现在有了一个替代的方案mitt.js,原理还是 EventBus

选项式API
//组件1
<template><div><button @click="sendMsg">传值</button></div>
</template>
<script>
import Bus from './bus.js'
export default {data(){return {msg:'子组件元素'}},methods:{sendMsg(){Bus.$emit('sendMsg','兄弟的值')}}
}
</script>//组件2<template><div>组件2</div>
</template>
<script>
import Bus from './bus.js'
export default {created(){Bus.$on('sendMsg',(val)=>{console.log(val);//兄弟的值})}
}
</script>//bus.jsimport Vue from "vue"
export default new Vue()
组合式API

首先安装mitt

npm i mitt -S

然后像Vue2中bus.js一样新建mitt.js文件

mitt.js

import mitt from 'mitt'
const Mitt = mitt()
export default Mitt
//组件1
<template><button @click="sendMsg">传值</button>
</template>
<script>
import { defineComponent } from "vue";
import Mitt from './mitt.js'
export default defineComponent({setup() {const sendMsg = () => {Mitt.emit('sendMsg','兄弟的值')}return {sendMsg}},
});
</script>//组件2
<template><div>组件2</div>
</template>
<script>
import { defineComponent, onUnmounted } from "vue";
import Mitt from './mitt.js'
export default defineComponent({setup() {const getMsg = (val) => {console.log(val);//兄弟的值}Mitt.on('sendMsg', getMsg)onUnmounted(() => {//组件销毁 移除监听Mitt.off('sendMsg', getMsg)})},
});
</script>
setup语法糖

//组件1<template><button @click="sendMsg">传值</button>
</template>
<script setup>
import Mitt from './mitt.js'
const sendMsg = () => {Mitt.emit('sendMsg', '兄弟的值')
}
</script>//组件2<template><div>组件2</div>
</template>
<script setup>
import { onUnmounted } from "vue";
import Mitt from './mitt.js'
const getMsg = (val) => {console.log(val);//兄弟的值
}
Mitt.on('sendMsg', getMsg)
onUnmounted(() => {//组件销毁 移除监听Mitt.off('sendMsg', getMsg)
})
</script>

v-model和sync

v-model大家都很熟悉,就是双向绑定的语法糖。这里不讨论它在input标签的使用;只是看一下它和sync在组件中的使用

我们都知道Vue中的props是单向向下绑定的;每次父组件更新时,子组件中的所有props都会刷新为最新的值;但是如果在子组件中修改 props ,Vue会向你发出一个警告(无法在子组件修改父组件传递的值);可能是为了防止子组件无意间修改了父组件的状态,来避免应用的数据流变得混乱难以理解。

但是可以在父组件使用子组件的标签上声明一个监听事件,子组件想要修改props的值时使用$emit触发事件并传入新的值,让父组件进行修改。

为了方便vue就使用了v-model和sync语法糖。

选项式API

//父组件<template><div><!-- 完整写法<Child @update:changePval="msg=$event" /> --><Child :changePval.sync="msg" />{{msg}}</div>
</template>
<script>
import Child from './Child'
export default {components: {Child},data(){return {msg:'父组件值'}}}
</script>//子组件<template><div><button @click="changePval">改变父组件值</button></div>
</template>
<script>
export default {data(){return {msg:'子组件元素'}},methods:{changePval(){//点击则会修改父组件msg的值this.$emit('update:changePval','改变后的值')}}
}
</script>
setup语法糖

因为使用的都是前面提过的知识,所以这里就不展示组合式API的写法了

//父组件<template><div><!-- 完整写法<Child @update:changePval="msg=$event" /> --><Child v-model:changePval="msg" />{{msg}}</div>
</template>
<script setup>
import Child from './Child'
import { ref } from 'vue'
const msg = ref('父组件值')
</script>//子组件<template><button @click="changePval">改变父组件值</button>
</template>
<script setup>
import { defineEmits } from 'vue';
const emits = defineEmits(['changePval'])
const changePval = () => {//点击则会修改父组件msg的值emits('update:changePval','改变后的值')
}
</script>

总结

vue3中移除了sync的写法,取而代之的式v-model:event的形式

其v-model:changePval="msg"或者:changePval.sync="msg"的完整写法为 @update:changePval="msg=$event"。

所以子组件需要发送update:changePval事件进行修改父组件的值

路由

vue3和vue2路由常用功能只是写法上有些区别

选项式API
<template><div><button @click="toPage">路由跳转</button></div>
</template>
<script>
export default {beforeRouteEnter (to, from, next) {// 在渲染该组件的对应路由被 confirm 前调用next()},beforeRouteEnter (to, from, next) {// 在渲染该组件的对应路由被 confirm 前调用next()},beforeRouteLeave ((to, from, next)=>{//离开当前的组件,触发next()       }),beforeRouteLeave((to, from, next)=>{//离开当前的组件,触发next()      }),methods:{toPage(){//路由跳转this.$router.push(xxx)}},created(){//获取paramsthis.$route.params//获取querythis.$route.query}
}
</script>

组合式API

<template><div><button @click="toPage">路由跳转</button></div>
</template>
<script>
import { defineComponent } from 'vue'
import { useRoute, useRouter } from 'vue-router'
export default defineComponent({beforeRouteEnter (to, from, next) {// 在渲染该组件的对应路由被 confirm 前调用next()},beforeRouteLeave ((to, from, next)=>{//离开当前的组件,触发next()       }),beforeRouteLeave((to, from, next)=>{//离开当前的组件,触发next()      }),setup() {const router = useRouter()const route = useRoute()const toPage = () => {router.push(xxx)}//获取params 注意是routeroute.params//获取queryroute.queryreturn {toPage}},
});
</script>
setup语法糖

我之所以用beforeRouteEnter作为路由守卫的示例是因为它在setup语法糖中是无法使用的;大家都知道setup中组件实例已经创建,是能够获取到组件实例的。而beforeRouteEnter是再进入路由前触发的,此时组件还未创建,所以是无法用在setup中的;如果想在setup语法糖中使用则需要再写一个script 如下:

<template><div><button @click="toPage">路由跳转</button></div>
</template>
<script>
export default {beforeRouteEnter(to, from, next) {// 在渲染该组件的对应路由被 confirm 前调用next()},
};
</script><script setup>
import { useRoute, useRouter,onBeforeRouteLeave, onBeforeRouteUpdate } from 'vue-router'
const router = useRouter()
const route = useRoute()
const toPage = () => {router.push(xxx)
}
//获取params 注意是route
route.params
//获取query
route.query//路由守卫
onBeforeRouteUpdate((to, from, next)=>{//当前组件路由改变后,进行触发next() 
})
onBeforeRouteLeave((to, from, next)=>{//离开当前的组件,触发next() 
})</script>
复制代码

单词数:1780字符数:19484



喜欢的朋友记得点赞、收藏、关注哦!!!


http://www.ppmy.cn/server/144626.html

相关文章

手写一个深拷贝工具

背景 在面向对象编程中&#xff0c;对象之间的复制是一个常见的需求。对象的复制通常分为浅拷贝&#xff08;Shallow Copy&#xff09;和深拷贝&#xff08;Deep Copy&#xff09;两种方式。浅拷贝只复制对象的基本数据类型和引用类型的数据地址&#xff0c;而深拷贝则会递归地…

React Native的`react-native-reanimated`库中的`useAnimatedStyle`钩子来创建一个动画样式

React Native的react-native-reanimated库中的useAnimatedStyle钩子来创建一个动画样式&#xff0c;用于一个滑动视图的每个项目&#xff08;SliderItem&#xff09;。useAnimatedStyle钩子允许你根据动画值&#xff08;在这个例子中是scrollX&#xff09;来动态地设置组件的样…

react和vue图片懒加载及实现原理

一、实现原理 核心思想&#xff1a; 只有当图片出现在视口中时&#xff0c;才加载图片。利用占位图或占位背景优化用户体验。 实现技术&#xff1a; 监听滚动事件&#xff1a;监听页面滚动&#xff0c;通过计算图片与视口的位置关系&#xff0c;判断是否需要加载图片。Intersec…

Scala学习记录,Array

数组&#xff1a;物理空间上连续的&#xff08;一个挨一个&#xff09;优势&#xff1a;根据下标能快速找到元素。 列表&#xff1a;物理空间上不连续&#xff08;不是一个元素挨着一个元素的&#xff09;优势&#xff1a;插入元素&#xff0c;删除较快。 Array定义&#xff…

大数据面试题每日练习--HDFS是如何工作的?

HDFS&#xff08;Hadoop Distributed File System&#xff09;是一个分布式文件系统&#xff0c;设计用于存储非常大的文件。它的主要工作原理如下&#xff1a; NameNode&#xff1a;管理文件系统的命名空间&#xff0c;维护文件目录树和文件元数据信息。NameNode记录每个文件…

一学就废|Python基础碎片,列表(List)

列表(数组)是一种常见的数据结构&#xff0c;通常&#xff0c;列表的共性操作包括获取、设置、搜索、过滤和排序。以下是对列表的一些常用的操作方法。 基本操作 我们可以在 Python 中操作列表的方法有很多。在我们开始学习这些通用操作之前&#xff0c;以下片段显示了列表最常…

[OpenHarmony5.0][Docker][环境]OpenHarmony5.0 Docker编译环境镜像下载以及使用方式

0. 制作过程 如果你想知道这个镜像是如何制作的&#xff0c;请看下面的教程&#xff0c;如果你只想拿到镜像。那就往下看就好了 链接&#xff1a; 1. 获取源码 源码下载请参考&#xff1a;OHOS_5.0中的[源码下载]章节&#xff0c;建议使用镜像站点下载。 2. 获取镜像 在Git…

【STM32】MPU6050初始化常用寄存器说明及示例代码

一、MPU6050常用配置寄存器 1、电源管理寄存器1&#xff08; PWR_MGMT_1 &#xff09; 此寄存器允许用户配置电源模式和时钟源。 DEVICE_RESET &#xff1a;用于控制复位的比特位。设置为1时复位 MPU6050&#xff0c;内部寄存器恢复为默认值&#xff0c;复位结束…