上一页 1 2 3 4 5 6 7 8 9 10 ··· 18 下一页
摘要: 定义 原码:计算机取值八位,首位为符号位(正0、负1),其余为其表示数的绝对值,最后高位补零 反码:正数原码不变,负数的符号位不变,其余位取反 补码:正数原码不变,负数最后一位加一(计算机用补码计算) 移码:符号位取反 表示范围 例如用三个位数的二进制来表示数字: 原码:可表示数量为 2*2*2=8 阅读全文
posted @ 2023-10-21 12:00 子过杨梅 阅读(48) 评论(0) 推荐(0) 编辑
摘要: 1.二进制表示十进制 例如:二进制 10010 十进制 1*2^4 + 0*2^3 + 0*2^2 + 1*2^1 + 0*2^0 = 16+0+0+2+0=18 二进制 10.11 十进制 1*2^1 + 0*2^0 + 1*2^-1 + 1*2^-2 = 2+0+0.5+0.25=2.75 2. 阅读全文
posted @ 2023-10-20 19:03 子过杨梅 阅读(215) 评论(0) 推荐(0) 编辑
摘要: 三态模式: 活跃:cpu将分配好的时间片交给该进程处理,时间片结束后,无论该进程任务完成与否都强制进入等待阶段 就绪:进程已经获得全部所需资源,排队等待分配得到cpu的使用时间片 等待:等待全部的资源就绪 示例图: 五态模式: 运行:同上 静态就绪:由运行挂起,例如:接到电话时,音乐播放暂时关闭 活 阅读全文
posted @ 2023-10-20 17:01 子过杨梅 阅读(16) 评论(0) 推荐(0) 编辑
摘要: <div id="app7"> <div style="height: 80px;width: 80px;background-color: aquamarine;" @click="father"> <div style="height: 40px;width: 40px;background-c 阅读全文
posted @ 2023-10-20 16:23 子过杨梅 阅读(3) 评论(0) 推荐(0) 编辑
摘要: <div id="app8"> <ul> <li v-for="(item,index) in list" style="display: inline;list-style-type: none; margin-left: 10px;" @click="indexactive = index"> 阅读全文
posted @ 2023-10-20 16:22 子过杨梅 阅读(2) 评论(0) 推荐(0) 编辑
摘要: 1.vue的四个生命阶段 2.vue的八个钩子 (1) beforeCreate:创建阶段前,script数据尚未加载 (2) created:创建阶段已完成 (3) beforeMount:挂载阶段前,开始通过数据进行页面渲染 (4) mounted:挂载阶段完毕 (5) beforeUpdate 阅读全文
posted @ 2023-10-19 20:51 子过杨梅 阅读(8) 评论(0) 推荐(0) 编辑
摘要: <div id="app6"> <div v-for="item in list">{{ item }}</div> </div> <script> const app6=new Vue({ el:'#app6', data:{ list:["1","2","3","4","5"] } }) </s 阅读全文
posted @ 2023-10-15 16:40 子过杨梅 阅读(1) 评论(0) 推荐(0) 编辑
摘要: <div id="app5"> <button @click="exchange(-5)">点我减五</button> <button @click="exchange(5)">点我加五</button> </div> <script> const app5=new Vue({ el:'#app5' 阅读全文
posted @ 2023-10-15 16:39 子过杨梅 阅读(2) 评论(0) 推荐(0) 编辑
摘要: <div id="app4"> <h3 v-show="display">别你妈逼点我</h3> <button @click="dian">老子就点你</button> </div> <script> const app4=new Vue({ el:"#app4", data:{ display: 阅读全文
posted @ 2023-10-08 10:55 子过杨梅 阅读(1) 评论(0) 推荐(0) 编辑
摘要: <div id="app3"> <button v-on:click="num++">+ </button> <span>{{ num }}</span> <button v-on:click="num--">- </button> <p v-if="num>10">帅</p> <p v-else- 阅读全文
posted @ 2023-10-08 10:54 子过杨梅 阅读(2) 评论(0) 推荐(0) 编辑
上一页 1 2 3 4 5 6 7 8 9 10 ··· 18 下一页