Android学生信息管理APP的设计与开发

1. 项目布局设计

页面1:学生信息添加页面

采用线性布局,页面中控件包含TextView、editView、Button等。

布局核心代码如下:

<?xml version="1.0" encoding="utf-8"?>
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"xmlns:app="http://schemas.android.com/apk/res-auto"xmlns:tools="http://schemas.android.com/tools"android:layout_width="match_parent"android:layout_height="match_parent"android:orientation="vertical"android:background="@drawable/addbg"tools:context=".MainActivity"><TextViewandroid:layout_width="wrap_content"android:layout_height="wrap_content"android:text="信息添加页面"android:textSize="30sp"android:textStyle="bold"android:textColor="#000000"android:layout_gravity="center"android:layout_margin="80dp"/><EditTextandroid:id="@+id/editText_onesno"android:layout_width="match_parent"android:layout_height="wrap_content"android:hint="学号"android:textSize="25sp"/><EditTextandroid:id="@+id/editText_onename"android:layout_width="match_parent"android:layout_height="wrap_content"android:hint="姓名"android:textSize="25sp"/><EditTextandroid:id="@+id/editText_onesex"android:layout_width="match_parent"android:layout_height="wrap_content"android:hint="性别"android:textSize="25sp"/><EditTextandroid:id="@+id/editText_onepro"android:layout_width="match_parent"android:layout_height="wrap_content"android:hint="专业班级"android:textSize="25sp"/><EditTextandroid:id="@+id/editText_onedep"android:layout_width="match_parent"android:layout_height="wrap_content"android:hint="所属系部"android:textSize="25sp"/><LinearLayoutandroid:layout_width="match_parent"android:layout_height="wrap_content"android:orientation="horizontal"><Buttonandroid:id="@+id/button_oneadd"android:layout_width="wrap_content"android:layout_height="wrap_content"android:text="添加"android:textSize="25sp"android:layout_weight="1"/><Buttonandroid:id="@+id/button_oneclear"android:layout_width="wrap_content"android:layout_height="wrap_content"android:text="清除"android:textSize="25sp"android:layout_weight="1"/></LinearLayout><Buttonandroid:id="@+id/button_onenext"android:layout_width="wrap_content"android:layout_height="wrap_content"android:text="下一页"android:textSize="25sp"android:layout_gravity="right"android:layout_marginTop="30dp"/>
</LinearLayout>
页面2:学生信息查询页面

采用线性布局,页面中控件包含TextView、editView、Button等。

布局核心代码如下:

 

<?xml version="1.0" encoding="utf-8"?>
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"xmlns:app="http://schemas.android.com/apk/res-auto"xmlns:tools="http://schemas.android.com/tools"android:layout_width="match_parent"android:layout_height="match_parent"android:orientation="vertical"android:background="@drawable/querybg"tools:context=".SecondActivity"><TextViewandroid:layout_width="wrap_content"android:layout_height="wrap_content"android:text="信息查询页面"android:textSize="30sp"android:textStyle="bold"android:textColor="#000000"android:layout_gravity="center"android:layout_margin="80dp"/><EditTextandroid:id="@+id/editText_twosno"android:layout_width="match_parent"android:layout_height="wrap_content"android:hint="请输入要查询的学号"android:textSize="25sp"/><Buttonandroid:id="@+id/button_twoquery"android:layout_width="match_parent"android:layout_height="wrap_content"android:text="查询"android:textSize="25sp"/><TextViewandroid:id="@+id/textView_tworesult"android:layout_width="wrap_content"android:layout_height="wrap_content"android:text="显示查询结果"android:textSize="25sp" /><Buttonandroid:id="@+id/button_twonext"android:layout_width="wrap_content"android:layout_height="wrap_content"android:text="下一页"android:textSize="25sp"android:layout_gravity="right"android:layout_marginTop="30dp"/>
</LinearLayout>
页面3:学生信息修改页面

采用线性布局,页面中控件包含TextView、editView、Button等。

布局核心代码如下:

 

<?xml version="1.0" encoding="utf-8"?>
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"xmlns:app="http://schemas.android.com/apk/res-auto"xmlns:tools="http://schemas.android.com/tools"android:layout_width="match_parent"android:layout_height="match_parent"android:orientation="vertical"android:background="@drawable/modifybg"tools:context=".thirdActivity"><TextViewandroid:layout_width="wrap_content"android:layout_height="wrap_content"android:text="信息修改页面"android:textSize="30sp"android:textStyle="bold"android:textColor="#000000"android:layout_gravity="center"android:layout_margin="80dp"/><LinearLayoutandroid:layout_width="match_parent"android:layout_height="wrap_content"android:orientation="horizontal"android:layout_marginBottom="30dp"><EditTextandroid:id="@+id/editText_threeinputsno"android:layout_width="wrap_content"android:layout_height="wrap_content"android:hint="请输入要查询的学号"android:textSize="25sp"/><Buttonandroid:id="@+id/button_threequery"android:layout_width="match_parent"android:layout_height="wrap_content"android:text="查询"android:textSize="25sp"/></LinearLayout><EditTextandroid:id="@+id/editText_threesno"android:layout_width="match_parent"android:layout_height="wrap_content"android:hint="学号"android:textSize="25sp"/><EditTextandroid:id="@+id/editText_threename"android:layout_width="match_parent"android:layout_height="wrap_content"android:hint="姓名"android:textSize="25sp"/><EditTextandroid:id="@+id/editText_threedep"android:layout_width="match_parent"android:layout_height="wrap_content"android:hint="所属系部"android:textSize="25sp"/><Buttonandroid:id="@+id/button_threemodify"android:layout_width="wrap_content"android:layout_height="wrap_content"android:text="修改"android:textSize="25sp"android:layout_gravity="right"android:layout_marginTop="30dp"/><Buttonandroid:id="@+id/button_threenext"android:layout_width="wrap_content"android:layout_height="wrap_content"android:text="下一页"android:textSize="25sp"android:layout_gravity="right"/>
</LinearLayout>
页面4:学生信息删除页面

采用线性布局,页面中控件包含TextView、editView、Button等。

布局核心代码如下:

 

<?xml version="1.0" encoding="utf-8"?>
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"xmlns:app="http://schemas.android.com/apk/res-auto"xmlns:tools="http://schemas.android.com/tools"android:layout_width="match_parent"android:layout_height="match_parent"android:orientation="vertical"android:background="@drawable/deletebg"tools:context=".fourActivity"><TextViewandroid:layout_width="wrap_content"android:layout_height="wrap_content"android:text="信息删除页面"android:textSize="30sp"android:textStyle="bold"android:textColor="#000000"android:layout_gravity="center"android:layout_margin="80dp"/><EditTextandroid:id="@+id/editText_foursno"android:layout_width="match_parent"android:layout_height="wrap_content"android:hint="请输入要删除的学号"android:textSize="25sp"/><Buttonandroid:id="@+id/button_fourdelete"android:layout_width="wrap_content"android:layout_height="wrap_content"android:text="删除"android:textSize="25sp"android:layout_gravity="right"/>
</LinearLayout>

2. 系统后台实现代码

页面1:信息添加功能核心代码如下:

 

package com.example.word;import androidx.appcompat.app.AppCompatActivity;import android.content.ContentValues;
import android.content.Intent;
import android.database.sqlite.SQLiteDatabase;
import android.os.Bundle;
import android.view.View;
import android.widget.Button;
import android.widget.EditText;
import android.widget.Toast;public class MainActivity extends AppCompatActivity {private EditText ed_onesno,ed_onename,ed_onesex,ed_onepro,ed_onedep;private Button btn_oneadd,btn_onenext,btn_oneclear;private MyDBOpenHelper myDBOpenHelper;//数据库帮助类对象private SQLiteDatabase db;//数据库对象@Overrideprotected void onCreate(Bundle savedInstanceState) {super.onCreate(savedInstanceState);setContentView(R.layout.activity_main);//初始化方法initview();//下一页btn_onenext.setOnClickListener(new View.OnClickListener() {@Overridepublic void onClick(View view) {Intent intent=new Intent(MainActivity.this,SecondActivity.class);startActivity(intent);}});//清楚btn_oneclear.setOnClickListener(new View.OnClickListener() {@Overridepublic void onClick(View view) {ed_onesno.setText("");ed_onename.setText("");ed_onesex.setText("");ed_onepro.setText("");ed_onedep.setText("");}});//添加btn_oneadd.setOnClickListener(new View.OnClickListener() {@Overridepublic void onClick(View view) {ContentValues values=new ContentValues();values.put("sno",ed_onesno.getText().toString());values.put("name",ed_onename.getText().toString());values.put("sex",ed_onesex.getText().toString());values.put("professional",ed_onepro.getText().toString());values.put("department",ed_onedep.getText().toString());db.insert("stu_info",null,values);Toast.makeText(MainActivity.this,"添加成功",Toast.LENGTH_SHORT).show();}});}//初始化private void initview() {ed_onesno=findViewById(R.id.editText_onesno);ed_onename=findViewById(R.id.editText_onename);ed_onesex=findViewById(R.id.editText_onesex);ed_onepro=findViewById(R.id.editText_onepro);ed_onedep=findViewById(R.id.editText_onedep);btn_oneadd=findViewById(R.id.button_oneadd);btn_oneclear=findViewById(R.id.button_oneclear);btn_onenext=findViewById(R.id.button_onenext);myDBOpenHelper=new MyDBOpenHelper(MainActivity.this);db=myDBOpenHelper.getWritableDatabase();//获取数据库的读写权限}
}
页面2:信息查询功能核心代码如下: 
package com.example.word;import androidx.appcompat.app.AppCompatActivity;import android.annotation.SuppressLint;
import android.content.Intent;
import android.database.Cursor;
import android.database.sqlite.SQLiteDatabase;
import android.os.Bundle;
import android.view.View;
import android.widget.Button;
import android.widget.EditText;
import android.widget.TextView;
import android.widget.Toast;public class SecondActivity extends AppCompatActivity {private EditText ed_twosno;private Button btn_twoquery,btn_twonext;private TextView txtresult;private MyDBOpenHelper myDBOpenHelper;private SQLiteDatabase db;@Overrideprotected void onCreate(Bundle savedInstanceState) {super.onCreate(savedInstanceState);setContentView(R.layout.activity_second);initview();//查询btn_twoquery.setOnClickListener(new View.OnClickListener() {@Overridepublic void onClick(View v) {Cursor cursor = db.rawQuery("select * from stu_info where sno=?",new String[]{ed_twosno.getText().toString()});if (cursor.getCount() !=0){Toast.makeText(SecondActivity.this, "查询成功!", Toast.LENGTH_SHORT).show();while (cursor.moveToNext()){@SuppressLint("Range")String rsno = cursor.getString(cursor.getColumnIndex("sno"));@SuppressLint("Range")String rname = cursor.getString(cursor.getColumnIndex("name"));@SuppressLint("Range")String rsex = cursor.getString(cursor.getColumnIndex("sex"));@SuppressLint("Range")String rpro = cursor.getString(cursor.getColumnIndex("professional"));@SuppressLint("Range")String rdep = cursor.getString(cursor.getColumnIndex("department"));txtresult.setText(rsno+"\n"+rname+"\n"+rsex+"\n"+rpro+"\n"+rdep);}}else {Toast.makeText(SecondActivity.this, "没有查询到该学号对应的学生信息", Toast.LENGTH_SHORT).show();txtresult.setText("");}}});//下一页btn_twonext.setOnClickListener(new View.OnClickListener() {@Overridepublic void onClick(View v) {Intent intent=new Intent(SecondActivity.this,thirdActivity.class);startActivity(intent);}});}private void initview() {ed_twosno=findViewById(R.id.editText_twosno);btn_twonext=findViewById(R.id.button_twonext);btn_twoquery=findViewById(R.id.button_twoquery);txtresult=findViewById(R.id.textView_tworesult);myDBOpenHelper = new MyDBOpenHelper(SecondActivity.this);db = myDBOpenHelper.getWritableDatabase();}
}
页面3:信息修改功能核心代码如下: 
package com.example.word;import androidx.appcompat.app.AppCompatActivity;import android.annotation.SuppressLint;
import android.content.ContentValues;
import android.content.Intent;
import android.database.Cursor;
import android.database.sqlite.SQLiteDatabase;
import android.os.Bundle;
import android.os.ConditionVariable;
import android.view.View;
import android.widget.Button;
import android.widget.EditText;
import android.widget.Toast;public class thirdActivity extends AppCompatActivity {private EditText ed_threeinput,ed_threesno,ed_threename,ed_threedep;private Button btn_threequery,btn_threemodify,btn_threenext;private MyDBOpenHelper myDBOpenHelper;private SQLiteDatabase db;@Overrideprotected void onCreate(Bundle savedInstanceState) {super.onCreate(savedInstanceState);setContentView(R.layout.activity_third);ed_threeinput=findViewById(R.id.editText_threeinputsno);ed_threesno=findViewById(R.id.editText_threesno);ed_threename=findViewById(R.id.editText_threename);ed_threedep=findViewById(R.id.editText_threedep);btn_threequery=findViewById(R.id.button_threequery);btn_threemodify=findViewById(R.id.button_threemodify);btn_threenext=findViewById(R.id.button_threenext);myDBOpenHelper = new MyDBOpenHelper(thirdActivity.this);db = myDBOpenHelper.getWritableDatabase();btn_threequery.setOnClickListener(new View.OnClickListener() {@Overridepublic void onClick(View view) {Cursor cursor = db.rawQuery("select * from stu_info where sno=?",new String[]{ed_threeinput.getText().toString()});if (cursor.getCount() !=0){Toast.makeText(thirdActivity.this, "查询成功!", Toast.LENGTH_SHORT).show();while (cursor.moveToNext()){@SuppressLint("Range")String rsno = cursor.getString(cursor.getColumnIndex("sno"));@SuppressLint("Range")String rname = cursor.getString(cursor.getColumnIndex("name"));@SuppressLint("Range")String rdep = cursor.getString(cursor.getColumnIndex("department"));ed_threesno.setText(rsno);ed_threename.setText(rname);ed_threedep.setText(rdep);}}else {Toast.makeText(thirdActivity.this, "没有查询到该学号对应的学生信息", Toast.LENGTH_SHORT).show();ed_threesno.setText("");ed_threename.setText("");ed_threedep.setText("");}}});btn_threemodify.setOnClickListener(new View.OnClickListener() {@Overridepublic void onClick(View view) {ContentValues values=new ContentValues();values.put("name",ed_threename.getText().toString());values.put("department",ed_threedep.getText().toString());db.update("stu_info",values,"sno=?",new String[]{ed_threeinput.getText().toString()});Toast.makeText(thirdActivity.this, "修改成功", Toast.LENGTH_SHORT).show();}});btn_threenext.setOnClickListener(new View.OnClickListener() {@Overridepublic void onClick(View view) {Intent intent=new Intent(thirdActivity.this,fourActivity.class);startActivity(intent);}});}
}
页面4:信息删除功能核心代码如下: 

 

package com.example.word;import androidx.appcompat.app.AppCompatActivity;import android.database.sqlite.SQLiteDatabase;
import android.os.Bundle;
import android.view.View;
import android.widget.Button;
import android.widget.EditText;
import android.widget.Toast;public class fourActivity extends AppCompatActivity {private EditText ed_foursno;private Button btn_fourdel;private MyDBOpenHelper myDBOpenHelper;private SQLiteDatabase db;@Overrideprotected void onCreate(Bundle savedInstanceState) {super.onCreate(savedInstanceState);setContentView(R.layout.activity_four);ed_foursno=findViewById(R.id.editText_foursno);btn_fourdel=findViewById(R.id.button_fourdelete);myDBOpenHelper = new MyDBOpenHelper(fourActivity.this);db = myDBOpenHelper.getWritableDatabase();btn_fourdel.setOnClickListener(new View.OnClickListener() {@Overridepublic void onClick(View view) {db.delete("stu_info","sno=?",new String[]{ed_foursno.getText().toString()});Toast.makeText(fourActivity.this, "删除成功!", Toast.LENGTH_SHORT).show();}});}
}

3. 实现效果

页面1:信息添加(包括数据库截图)

 

 

页面2:

页面3:

页面4:

 

本文来自互联网用户投稿,该文观点仅代表作者本人,不代表本站立场。本站仅提供信息存储空间服务,不拥有所有权,不承担相关法律责任。如若转载,请注明出处:http://www.mzph.cn/bicheng/61166.shtml

如若内容造成侵权/违法违规/事实不符,请联系多彩编程网进行投诉反馈email:809451989@qq.com,一经查实,立即删除!

相关文章

AI(12)-飘带

1.【钢笔工具】画第一条曲线 2.【钢笔工具】画第二条曲线 3-全选两条曲线-【对象】-【混合】-【混合选项】-【指定的步数】-【15】 3-1-【对象】-【混合】-【建立】 4-双击打开【渐变工具】 4-1-【类型&#xff1a;线性】 4-2-点击切换【描边】在上方 4-3-关闭【填色】 4-4-点…

智能指针原理、使用和实现——C++11新特性(三)

目录 一、智能指针的理解 二、智能指针的类型 三、shared_ptr的原理 1.引用计数 2.循环引用问题 3.weak_ptr处理逻辑 四、shared_ptr的实现 五、定制删除器 六、源码 一、智能指针的理解 问题&#xff1a;什么是智能指针&#xff1f;为什么要有智能指针&#xff1f;智…

NIST 发布后量子密码学转型战略草案

美国国家标准与技术研究所 (NIST) 发布了其初步战略草案&#xff0c;即内部报告 (IR) 8547&#xff0c;标题为“向后量子密码标准过渡”。 该草案概述了 NIST 从当前易受量子计算攻击的加密算法迁移到抗量子替代算法的战略。该草案于 2024 年 11 月 12 日发布&#xff0c;开放…

使用uniapp开发微信小程序使用uni_modules导致主包文件过大,无法发布的解决方法

在使用uniapp开发微信小程序时候&#xff0c;过多的引入uni_modules的组件库&#xff0c;会导致主包文件过大&#xff0c;导致无法上传微信小程序&#xff0c;主包要求大小不超过1.5MB.分包大小每个不能超过2M。 解决方法&#xff1a;分包。 1.对每个除了主页面navbar的页面进…

WPF窗体基本知识-笔记-命名空间

窗体程序关闭方式 命名空间:可以理解命名空间的作用为引用下面的控件对象 给控件命名:一般都用x:Name,也可以用Name但是有的控件不支持 布局控件(容器)的类型 布局控件继承于Panel的控件,其中下面的border不是布局控件,panel是抽象类 在重叠的情况下,Zindex值越大的就在上面 Z…

【android USB 串口通信助手】stm32 源码demo 单片机与手机通信 Android studio 20241118

android 【OTG线】 接 下位机STM32【USB】 通过百度网盘分享的文件&#xff1a;USBToSerialPort.apk 链接&#xff1a;https://pan.baidu.com/s/122McdmBDUxEtYiEKFunFUg?pwd8888 提取码&#xff1a;8888 android 【OTG线】 接 【USB转TTL】 接 【串口(下位机 SMT32等)】 需…

SpringBoot源码解析(四):解析应用参数args

SpringBoot源码系列文章 SpringBoot源码解析(一)&#xff1a;SpringApplication构造方法 SpringBoot源码解析(二)&#xff1a;引导上下文DefaultBootstrapContext SpringBoot源码解析(三)&#xff1a;启动开始阶段 SpringBoot源码解析(四)&#xff1a;解析应用参数args 目录…

使用IDEA+Maven实现MapReduced的WordCount

使用IDEAMaven实现MapReduce 准备工作 在桌面创建文件wordfile1.txt I love Spark I love Hadoop在桌面创建文件wordfile2.txt Hadoop is good Spark is fast上传文件到Hadoop # 启动Hadoop cd /usr/local/hadoop ./sbin/start-dfs.sh # 删除HDFS的hadoop对应的input和out…

Spring Cloud Ribbon 实现“负载均衡”的详细配置说明

1. Ribbon 介绍 Ribbon 是什么 &#xff1f; 1.Spring Cloud Ribbon 是基于Netflix Ribbon 实现的一套客户端&#xff0c;负载均衡的工具 2.Ribbon 主要功能是提供客户端负载均衡算法和服务调用 3.Ribbon 客户端组件提供一系列完善的配置项如“连接超时&#xff0c;重试” 4…

TSMC12nm工艺数字IC后端实现难点都有哪些?

大家知道咱们社区近期TSMC 12nm ARM Cortexa-A72(1P9M 6Track Metal Stack)即将开班。这里小编要强调一点:不要认为跑了先进工艺的项目就会很有竞争力&#xff01;如果你仅仅是跑个先进工艺的flow&#xff0c;不懂先进工艺在数字IC后端实现上的不同点&#xff0c;为何有这样的不…

使用微信小程序调用飞桨PaddleX平台自行训练的模型——微信小程序用训练的牡丹花模型Demo测试

&#x1f3bc;个人主页&#xff1a;【Y小夜】 &#x1f60e;作者简介&#xff1a;一位双非学校的大二学生&#xff0c;编程爱好者&#xff0c; 专注于基础和实战分享&#xff0c;欢迎私信咨询&#xff01; &#x1f386;入门专栏&#xff1a;&#x1f387;【MySQL&#xff0…

【C++】基础篇二、引用详解

文章目录 1.引用的概念和定义2.引用的特性3.引用的使用3.1 做函数返回值3.2 传参 3.3 其他使用 4.const的运用引用的权限问题&#xff1b;const修饰引用&#xff1b; 5.指针和引用的对比 1.引用的概念和定义 在介绍概念之前先说一下引用的符号——“ & ”&#xff1b;对于这…

D3基础:绘制圆形、椭圆形、多边形、线、路径、矩形

在D3.js中&#xff0c;可以通过SVG元素来创建各种几何图形。以下是D3.js中常用的几何图形及其简单的创建方法&#xff1a; 1. 圆形 (Circle) 圆形是最基本的形状之一&#xff0c;可以通过<circle>标签来创建。 <!DOCTYPE html> <html> <head><met…

前端监控之sourcemap精准定位和还原错误源码

一、概述 在前端开发中&#xff0c;监控和错误追踪是确保应用稳定性和用户体验的重要环节。 随着前端应用的复杂性增加&#xff0c;JavaScript错误监控变得尤为重要。在生产环境中&#xff0c;为了优化加载速度和性能&#xff0c;前端代码通常会被压缩和混淆。这虽然提升了性…

MySQL的表的约束以及查询

本篇文章继续给大家梳理MySQL的操作 目录 表的约束 空属性 默认值 列描述 0填充 主键 主键常识 添加主键 删除主键 复合主键 自增长 唯一键 外键 单/多行输入与全/指定列的插入 全列输入 单行输入 多行插入 指定列插入 单行输入 多行插入 插入否则更新 替换…

MySQL 日志 主从复制

1. 日志 学习链接&#xff0c;click mysql中有4种日志&#xff1a; 错误日志二进制日志查询日志慢查询日志 1.1 错误日志 错误日志是MySQL中最重要的日志之一&#xff0c;它记录了当mysqld启动和停止时&#xff0c;以及服务器在运行过程中发生任何严重错误时的相关信息。当…

自动驾驶系列—深入解析自动驾驶车联网技术及其应用场景

&#x1f31f;&#x1f31f; 欢迎来到我的技术小筑&#xff0c;一个专为技术探索者打造的交流空间。在这里&#xff0c;我们不仅分享代码的智慧&#xff0c;还探讨技术的深度与广度。无论您是资深开发者还是技术新手&#xff0c;这里都有一片属于您的天空。让我们在知识的海洋中…

基于YOLOv8深度学习的公共卫生防护口罩佩戴检测系统(PyQt5界面+数据集+训练代码)

在全球公共卫生事件频发的背景下&#xff0c;防护口罩佩戴检测成为保障公众健康和控制病毒传播的重要手段之一。特别是在人员密集的公共场所&#xff0c;例如医院、学校、公共交通工具等地&#xff0c;口罩的正确佩戴对降低病毒传播风险、保护易感人群、遏制疫情扩散有着至关重…

vue使用List.reduce实现统计

需要对集合的某些元素的值进行计算时&#xff0c;可以在计算属性中使用forEach方法 1.语法&#xff1a;集合.reduce ( ( 定义阶段性累加后的结果 , 定义遍历的每一项 ) > 定义每一项求和逻辑执行后的返回结果 , 定义起始值 ) 2、简单使用场景&#xff1a;例如下面…

【Linux】进程的优先级

进程的优先级 一.概念二.修改优先级的方法三.进程切换的大致原理&#xff1a;四.上下文数据的保存位置&#xff1a; 一.概念 cpu资源分配的先后顺序&#xff0c;就是指进程的优先权&#xff08;priority&#xff09;。 优先权高的进程有优先执行权利。配置进程优先权对多任务环…