实验5 单选多选、进度条、图像显示等组件使用

news2025/1/19 23:23:12

实验内容和步骤

以下习题需要自己设计界面内容,尽量丰富,并且突出创新和亮点,不可简单仿照例题。

1.设计并实现音乐播放器的进度条界面。
2.设计并实现含有多选控件的界面。
3.设计并实现含有单选控件的界面。
4.设计并实现含有图像显示的界面。



1.activity_main.xml源代码:

<?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="fill_parent"
    android:layout_height="fill_parent"
    tools:context=".MainActivity"
    android:orientation="vertical">
    <ProgressBar
        android:id="@+id/progress1"
        style="@android:style/Widget.ProgressBar.Horizontal"
        android:layout_width='250dp'
        android:layout_height="20dp"
        android:max="100"
        android:layout_gravity="center"
        android:progress="20">
    </ProgressBar>
    <TextView
        android:id="@+id/txt"
        android:layout_width="168dp"
        android:layout_height="40dp"
        android:layout_x="20dp"
        android:text="@string/time"
        android:layout_gravity="center"
        android:textSize="24sp"/>
    <LinearLayout
        android:layout_width="match_parent"
        android:layout_height="wrap_content"
        android:layout_gravity="center_horizontal"
        android:gravity="center_horizontal"
        android:orientation="horizontal">
        <Button
            android:id="@+id/button1"
            android:layout_width="60dp"
            android:layout_height="40dp"
            android:layout_below="@id/progress1"
            android:layout_gravity="center"
            android:text="@string/btn1"
            tools:ignore="TouchTargetSizeCheck" />
        <Button
            android:id="@+id/button2"
            android:layout_width="60dp"
            android:layout_height="40dp"
            android:layout_below="@id/progress1"
            android:layout_toRightOf="@id/button1"
            android:text="@string/btn2"
            tools:ignore="TouchTargetSizeCheck" />
    </LinearLayout>
</LinearLayout>

MainActivity.java源代码:

package com.example.helloworld;
import androidx.appcompat.app.AppCompatActivity;
import android.annotation.SuppressLint;
import android.app.Activity;
import android.graphics.Color;
import android.widget.ProgressBar;
import android.widget.TextView;//文本标签
import android.widget.Button;//按钮
import android.widget.EditText;//文本编辑框
import android.os.Bundle;
import android.view.View;
import android.view.View.OnClickListener;
import org.w3c.dom.Text;

public class MainActivity extends AppCompatActivity {
    private TextView txt1;
    private Button btn1,btn2;
    int time=20;//记录进度条一开始的长度
    ProgressBar progress;
    @SuppressLint("MissingInflatedId")
    @Override
    protected void onCreate(Bundle savedInstanceState) {
        super.onCreate(savedInstanceState);
        setContentView(R.layout.activity_main);
        txt1=(TextView)findViewById(R.id.txt);//显示进度的文本
        progress=(ProgressBar)findViewById(R.id.progress1);
        btn1=(Button)findViewById(R.id.button1);
        btn2=(Button)findViewById(R.id.button2);
        btn1.setOnClickListener(new click1());
        btn2.setOnClickListener(new click2());
    }
    class click1 implements OnClickListener{
        public void onClick(View v){
            progress.incrementProgressBy(-5);
            if(time>=5)
                time-=5;
            txt1.setText("播放进度:"+Integer.toString(time));
        }
    }
    class click2 implements OnClickListener{
        public void onClick(View v){
            progress.incrementProgressBy(5);
            if(time<=95)     //但是必须要将int类型转化为String类型才行,否则报错
                time+=5;
            txt1.setText("播放进度:"+Integer.toString(time));//这句就是会显示修改后的内容了
        }
    }
}

结果图:
在这里插入图片描述在这里插入图片描述2.activity_main.xml源代码:

<?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="fill_parent"
    android:layout_height="fill_parent"
    android:orientation="vertical"
    tools:context=".MainActivity">

    <TextView
        android:id="@+id/txt1"
        android:layout_width="fill_parent"
        android:layout_height="wrap_content"
        android:text="@string/movie"
        android:textSize="20sp" />

    <CheckBox
        android:id="@+id/check1"
        android:layout_width="fill_parent"
        android:layout_height="wrap_content"
        android:text="@string/movie1"
        android:textSize="20sp" />

    <CheckBox
        android:id="@+id/check2"
        android:layout_width="fill_parent"
        android:layout_height="wrap_content"
        android:text="@string/movie2"
        android:textSize="20sp" />

    <CheckBox
        android:id="@+id/check3"
        android:layout_width="fill_parent"
        android:layout_height="wrap_content"
        android:text="@string/movie3"
        android:textSize="20sp" />

    <CheckBox
        android:id="@+id/check4"
        android:layout_width="fill_parent"
        android:layout_height="wrap_content"
        android:text="@string/movie4"
        android:textSize="20sp" />

    <Button
        android:id="@+id/button1"
        android:layout_width="100dp"
        android:layout_height="70dp"
        android:layout_gravity="center"
        android:text="确定"
        android:textSize="30sp" />
    <TextView
        android:id="@+id/txt2"
        android:layout_width="fill_parent"
        android:layout_height="wrap_content"
        android:textSize="20sp"/>
</LinearLayout>

MainActivity.java源代码:

package com.example.helloworld;
import androidx.annotation.CheckResult;
import androidx.appcompat.app.AppCompatActivity;

import android.annotation.SuppressLint;
import android.app.Activity;
import android.graphics.Color;
import android.widget.CheckBox;
import android.widget.ProgressBar;
import android.widget.TextView;//文本标签
import android.widget.Button;//按钮
import android.widget.EditText;//文本编辑框
import android.os.Bundle;
import android.view.View;
import android.view.View.OnClickListener;

import org.w3c.dom.Text;

public class MainActivity extends AppCompatActivity {
    private TextView txt1,txt2,txt3,txt4,txt5;
    private Button btn1,btn2,btn;
    private EditText edit1,edit2,edit3,edit4;
    private CheckBox b1,b2,b3,b4;
    ProgressBar progress;
    @SuppressLint("MissingInflatedId")
    @Override
    protected void onCreate(Bundle savedInstanceState) {
        super.onCreate(savedInstanceState);
        setContentView(R.layout.activity_main);
        txt1=(TextView)findViewById(R.id.txt1);
        b1=(CheckBox)findViewById(R.id.check1);
        b2=(CheckBox)findViewById(R.id.check2);
        b3=(CheckBox)findViewById(R.id.check3);
        b4=(CheckBox)findViewById(R.id.check4);
        btn=(Button)findViewById(R.id.button1);
        txt2=(TextView)findViewById(R.id.txt2);
        btn.setOnClickListener(new click());
    }
    class click implements OnClickListener{
        public void onClick(View v){
            String ans="";
            boolean ok=false;
            if(b1.isChecked()){
                ans+=("\n"+b1.getText());
                ok=true;
            }
            if(b2.isChecked()){
                ans+=("\n"+b2.getText());
                ok=true;
            }
            if(b3.isChecked()){
                ans+=("\n"+b3.getText());
                ok=true;
            }
            if(b4.isChecked()){
                ans+=("\n"+b4.getText());
                ok=true;
            }
            if(ok)
                txt2.setText("我们将为您播放以下电影:"+ans);
            else
                txt2.setText("您未选择任何一部电影,如果您有兴趣,仍可继续选择");
        }
    }
}

在这里插入图片描述在这里插入图片描述

3.activity_main.xml源代码:

<?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="fill_parent"
    android:layout_height="fill_parent"
    android:orientation="vertical"
    tools:context=".MainActivity">

    <TextView
        android:id="@+id/txt0"
        android:layout_width="249dp"
        android:layout_height="wrap_content"
        android:layout_gravity="center"
        android:text="@string/survey"
        android:textSize="35sp"/>

    <TextView
        android:id="@+id/txt1"
        android:layout_width="fill_parent"
        android:layout_height="wrap_content"
        android:text="@string/select1"
        android:textSize="20sp" />

    <RadioGroup
        android:layout_width="fill_parent"
        android:layout_height="wrap_content">
        <RadioButton
            android:id="@+id/ra11"
            android:layout_width="fill_parent"
            android:layout_height="wrap_content"
            android:text="@string/movie1"
            android:textSize="20sp"
            tools:ignore="TouchTargetSizeCheck" />
        <RadioButton
            android:id="@+id/ra12"
            android:layout_width="fill_parent"
            android:layout_height="wrap_content"
            android:text="@string/movie2"
            android:textSize="20sp"
            tools:ignore="TouchTargetSizeCheck" />
        <RadioButton
            android:id="@+id/ra13"
            android:layout_width="fill_parent"
            android:layout_height="wrap_content"
            android:text="@string/movie3"
            android:textSize="20sp"
            tools:ignore="TouchTargetSizeCheck" />
    </RadioGroup>
    <TextView
        android:id="@+id/txt2"
        android:layout_width="fill_parent"
        android:layout_height="wrap_content"
        android:text="@string/select2"
        android:textSize="20sp"/>
    <RadioGroup
        android:layout_width="fill_parent"
        android:layout_height="wrap_content">
        <RadioButton
            android:id="@+id/ra21"
            android:layout_width="fill_parent"
            android:layout_height="wrap_content"
            android:text="@string/fruit1"
            android:textSize="20sp"
            tools:ignore="TouchTargetSizeCheck" />
        <RadioButton
            android:id="@+id/ra22"
            android:layout_width="fill_parent"
            android:layout_height="wrap_content"
            android:text="@string/fruit2"
            android:textSize="20sp"
            tools:ignore="TouchTargetSizeCheck" />
        <RadioButton
            android:id="@+id/ra23"
            android:layout_width="fill_parent"
            android:layout_height="wrap_content"
            android:text="@string/fruit3"
            android:textSize="20sp"
            tools:ignore="TouchTargetSizeCheck" />
    </RadioGroup>
    <TextView
        android:id="@+id/txt3"
        android:layout_width="fill_parent"
        android:layout_height="wrap_content"
        android:text="@string/select3"
        android:textSize="20sp"/>
    <RadioGroup
        android:layout_width="fill_parent"
        android:layout_height="wrap_content">
        <RadioButton
            android:id="@+id/ra31"
            android:layout_width="fill_parent"
            android:layout_height="wrap_content"
            android:text="@string/music1"
            android:textSize="20sp"
            tools:ignore="TouchTargetSizeCheck"/>
        <RadioButton
            android:id="@+id/ra32"
            android:layout_width="fill_parent"
            android:layout_height="wrap_content"
            android:text="@string/music2"
            android:textSize="20sp"
            tools:ignore="TouchTargetSizeCheck" />
        <RadioButton
            android:id="@+id/ra33"
            android:layout_width="fill_parent"
            android:layout_height="wrap_content"
            android:text="@string/music3"
            android:textSize="20sp"
            tools:ignore="TouchTargetSizeCheck" />
    </RadioGroup>
    <Button
        android:id="@+id/btn1"
        android:layout_width="100dp"
        android:layout_height="70dp"
        android:layout_gravity="center"
        android:text="确定"
        android:textSize="30sp"/>

    <TextView
        android:id="@+id/txt4"
        android:layout_width="fill_parent"
        android:layout_height="wrap_content"
        android:text="@string/result"
        android:textSize="20sp"/>
</LinearLayout>

MainActivity.java源代码:

package com.example.helloworld;
import androidx.annotation.CheckResult;
import androidx.appcompat.app.AppCompatActivity;
import android.annotation.SuppressLint;
import android.app.Activity;
import android.graphics.Color;
import android.widget.CheckBox;
import android.widget.ProgressBar;
import android.widget.RadioButton;
import android.widget.TextView;//文本标签
import android.widget.Button;//按钮
import android.widget.EditText;//文本编辑框
import android.os.Bundle;
import android.view.View;
import android.view.View.OnClickListener;
import org.w3c.dom.Text;

public class MainActivity extends AppCompatActivity {
    private TextView txt,txt1,txt2,txt3,txt4,txt5;
    private Button btn1,btn2,btn;
    private RadioButton rb11,rb12,rb13,rb21,rb22,rb23,rb31,rb32,rb33;
    private CheckBox b1,b2,b3,b4;
    ProgressBar progress;
    @SuppressLint("MissingInflatedId")
    @Override
    protected void onCreate(Bundle savedInstanceState) {
        super.onCreate(savedInstanceState);
        setContentView(R.layout.activity_main);
        txt=(TextView)findViewById(R.id.txt0);
        txt1=(TextView)findViewById(R.id.txt1);
        rb11=(RadioButton)findViewById(R.id.ra11);
        rb12=(RadioButton)findViewById(R.id.ra12);
        rb13=(RadioButton)findViewById(R.id.ra13);
        txt2=(TextView)findViewById(R.id.txt2);
        rb21=(RadioButton)findViewById(R.id.ra21);
        rb22=(RadioButton)findViewById(R.id.ra22);
        rb23=(RadioButton)findViewById(R.id.ra23);
        txt3=(TextView)findViewById(R.id.txt3);
        rb31=(RadioButton)findViewById(R.id.ra31);
        rb32=(RadioButton)findViewById(R.id.ra32);
        rb33=(RadioButton)findViewById(R.id.ra33);
        btn=(Button)findViewById(R.id.btn1);
        btn.setOnClickListener(new click());
        txt4=(TextView)findViewById(R.id.txt4);
    }
    class click implements OnClickListener{
        public void onClick(View v){
            String ans="";
            boolean ok=false;
            if(rb11.isChecked())
                {ans+=("\n你最喜欢看的电影是:"+rb11.getText()); ok=true;}
            else if(rb12.isChecked())
                {ans+=("\n你最喜欢看的电影是:"+rb12.getText()); ok=true;}
            else if(rb13.isChecked())
                {ans+=("\n你最喜欢看的电影是:"+rb13.getText()); ok=true;}
            if(rb21.isChecked())
                {ans+=("\n你最喜欢吃的水果是:"+rb21.getText()); ok=true;}
            else if(rb22.isChecked())
                {ans+=("\n你最喜欢吃的水果是:"+rb22.getText()); ok=true;}
            else if(rb23.isChecked())
                {ans+=("\n你最喜欢吃的水果是:"+rb23.getText()); ok=true;}
            if(rb31.isChecked())
                {ans+=("\n你最喜欢听的歌曲是:"+rb31.getText()); ok=true;}
            else if(rb32.isChecked())
                {ans+=("\n你最喜欢听的歌曲是:"+rb32.getText()); ok=true;}
            else if(rb33.isChecked())
                {ans+=("\n你最喜欢听的歌曲是:"+rb33.getText()); ok=true;}
            if(ok)
                txt4.setText("通过你的选择得知:"+ans+"\n感谢您的参与!");
            else
                txt4.setText("您还未选择任何选项!");
        }
    }
}

结果图:
在这里插入图片描述在这里插入图片描述
4.activity_main.xml源代码:

<?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="fill_parent"
    android:layout_height="fill_parent"
    android:orientation="vertical"
    tools:context=".MainActivity">

    <LinearLayout
        android:layout_width="match_parent"
        android:layout_height="wrap_content"
        android:gravity="center|fill"
        android:orientation="vertical">
        <ImageView
            android:id="@+id/image"
            android:layout_width="wrap_content"
            android:layout_height="520dp"
            android:src="@drawable/pic1"/>
    </LinearLayout>
    <LinearLayout
        android:layout_width="match_parent"
        android:layout_height="wrap_content"
        android:layout_gravity="center_horizontal"
        android:gravity="center_horizontal"
        android:orientation="horizontal">
        <Button
            android:id="@+id/btn1"
            android:layout_width="190dp"
            android:layout_height="70dp"
            android:text="上一张"
            android:textSize="30sp"/>
        <Button
            android:id="@+id/btn2"
            android:layout_width="190dp"
            android:layout_height="70dp"
            android:text="下一张"
            android:textSize="30sp"/>
    </LinearLayout>
    <TextView
        android:id="@+id/txt0"
        android:layout_width="200dp"
        android:layout_height="wrap_content"
        android:layout_gravity="center"
        android:text="第1张,共6张"
        android:textSize="30sp"/>
</LinearLayout>

MainActivity.java源代码:

package com.example.helloworld;
import androidx.annotation.CheckResult;
import androidx.appcompat.app.AppCompatActivity;
import android.annotation.SuppressLint;
import android.app.Activity;
import android.graphics.Color;
import android.widget.CheckBox;
import android.widget.ProgressBar;
import android.widget.RadioButton;
import android.widget.TextView;//文本标签
import android.widget.Button;//按钮
import android.widget.EditText;//文本编辑框
import android.widget.ImageView;
import android.os.Bundle;
import android.view.View;
import android.view.View.OnClickListener;
import org.w3c.dom.Text;
public class MainActivity extends AppCompatActivity {
    private TextView txt,txt1,txt2,txt3,txt4,txt5;
    private Button button1,button2,btn;
    ImageView img;
    private int[] imgs={R.drawable.pic1,R.drawable.pic2,R.drawable.pic3,
                        R.drawable.pic4,R.drawable.pic5,R.drawable.pic6};
    int index=0;
    ProgressBar progress;
    @SuppressLint("MissingInflatedId")
    @Override
    protected void onCreate(Bundle savedInstanceState) {
        super.onCreate(savedInstanceState);
        setContentView(R.layout.activity_main);
        img=(ImageView)findViewById(R.id.image);
        button1=(Button)findViewById(R.id.btn1);
        button2=(Button)findViewById(R.id.btn2);
        txt=(TextView)findViewById(R.id.txt0);
        button1.setOnClickListener(new click());
        button2.setOnClickListener(new click());
    }
    class click implements OnClickListener{
        public void onClick(View v){
            if(v==button1){//查看上一张图片
                if(index>0&&index<imgs.length)
                    img.setImageResource(imgs[index--]);
                else{
                    index=imgs.length-1;
                    img.setImageResource(imgs[index]);
                }
            }
            if(v==button2){//查看下一张图片
                if(index>=0&&index<imgs.length-1)
                    img.setImageResource(imgs[++index]);
                else{
                    index=0;
                    img.setImageResource(imgs[index]);
                }
            }
            txt.setText("第"+(index+1)+"张,共"+imgs.length+"张");
        }
    }
}

结果图:
这些图片需要先保存到drawable下面,命名分别为pic1,pic2,pic3,pic4,pic5,pic6
在这里插入图片描述在这里插入图片描述



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

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

相关文章

华为OD机试真题 Java 实现【去除多余空格】【2023Q1 200分】

一、题目描述 去除文本多余空格&#xff0c;但不去除配对单引号之间的多余空格。给出关键词的起始和结束下标&#xff0c;去除多余空格后刷新关键词的起始和结束下标。 条件约束&#xff1a; 不考虑关键词起始和结束位置为空格的场景&#xff1b;单词的的开始和结束下标保证…

springboot项目:瑞吉外卖 前后端 代码、思路 详细分析 part6

part1 part2 part3 part4 part5 part6(本页) 7. 菜品展示、购物车、下单 功能开发 7.1 导入用户地址簿相关功能代码 7.2 菜品展示 7.3 购物车 7.4 下单 7.1 导入用户地址簿相关功能代码 7.1.1 整体分析 需求分析 数据模型需要开发的模块&#xff1a;新增收获地址、设置默认…

【Mysql】初识 Mysql

文章目录 【Mysql】初识 Mysql数据库初识主流关系型数据库理解数据库mysql基本操作连接服务器理解服务器&#xff0c;数据库&#xff0c;表关系小案例数据逻辑存储 mysql架构sql分类存储引擎 【Mysql】初识 Mysql 数据库初识 数据库概念 数据库是“按照数据结构来组织、存储和…

v-model使用及原理

关于v-model&#xff0c;vue2与vue3用法不一致&#xff0c;本文学习采用了vue3官网文档。与vue2区别写在本文末尾。一、为什么使用v-model&#xff1f; v-model指令可以在表单input、textarea以及select元素上创建双向数据绑定。它会根据控件类型自动选取正确的方法来更新元素…

马哈鱼SQLFLow直接数据流介绍

直接数据流介绍 本文将介绍一些生成直接数据流的SQL元素&#xff0c;这些元素是生产数据流的主要原型。 1、Select 示例语句&#xff1a; SELECT a.empName "eName" FROM scott.emp a Where sal > 1000目标列“eName”的数据来自scott.emp.empName列&#xff…

【安卓源码】安卓app应用进程启动原理

目录 0. 应用app 调用 startActivity 1. AMS 调用 startActivity 方法 2. zygote socket 通信,通知 zygote 创建应用进程 1-1&#xff09; 去fork 一个子进程 Zygote.forkAndSpecialize 1-2&#xff09;执行子进程方法 handleChildProc 1-3&#xff09;执行父进程方法 ha…

用户管理 ---MySQL总结(七)

用户管理 对于MySQL的用户也是需要进行管理&#xff0c;这里的东西类似与Linux的多用户管理&#xff0c;基本相同 用户属性 MySQL的用户都是储存在数据库mysql的user之中。 这里使用desc table_name;查看user表的属性。 desc user;//下面的就是输出的结果host:登陆限制 user…

chatgpt赋能Python-python_ai_app

用Python编写AI应用程序 Python是目前最受欢迎的编程语言之一&#xff0c;被广泛用于各种应用程序的开发。其中&#xff0c;人工智能&#xff08;AI&#xff09;应用程序成为Python编程人员最感兴趣和热门的领域之一。这篇文章将重点介绍用Python编写AI应用程序的好处&#xf…

从零开始Vue3+Element Plus后台管理系统(16)——组合式函数hook二次封装el-table

终于写到组合式函数了&#xff0c;它类似vue2的mixin&#xff0c;但优于mixin&#xff0c;用好了可以事半功倍。 在 Vue 应用的概念中&#xff0c;“组合式函数”(Composables) 是一个利用 Vue 的组合式 API 来封装和复用有状态逻辑的函数。 官方文档&#xff1a;https://cn.vu…

chatgpt赋能Python-python_chan

Python的Channel模块&#xff1a;优化你的并发控制 Python是一门优秀的编程语言&#xff0c;在众多优秀的模块中&#xff0c;Channel模块是一个备受喜爱的模块。它是Python并发控制的建议之一&#xff0c;可以被用来在多个协程之间传递和传输消息。这个模块不仅仅是Python 3.5…

chatgpt赋能Python-python_cal

Python编程的神器——Cal 随着人工智能、机器学习等技术的发展&#xff0c;Python语言成为了最热门的编程语言之一。Python可以帮助程序员快速实现自己的想法&#xff0c;让程序的编写变得更加简单和容易。在Python中&#xff0c;有许多高效好用的工具和库&#xff0c;而其中最…

chatgpt赋能Python-python_chi2

Python中的Chi-Squared测试&#xff1a;一种用于统计分析的重要方法 数据分析是当今商业和科学中最重要的工具之一&#xff0c;它可以帮助人们了解他们的业务和科学领域。其中数据分析的技术以Python为代表的编程语言越来越受到欢迎&#xff0c;这些方法可以用于分类、回归、聚…

《数据可视化》课程期末项目_地理交通数据可视化

2022年上海疫情爆发期间交通数据可视化分析 《数据可视化》课程期末项目报告-选题&#xff1a;地理数据可视化 GitHub源码地址(如果有用点个 star 吧~谢谢&#xff01;) 文章目录 1.0 项目简介2.0 数据简介2.1 航线数据2.2 公交路线数据2.1 项目流程 3.0 数据处理3.1 航线数据…

【面试题】如何实现vue虚拟列表,纵享丝滑

大厂面试题分享 面试题库 前后端面试题库 &#xff08;面试必备&#xff09; 推荐&#xff1a;★★★★★ 地址&#xff1a;前端面试题库 web前端面试题库 VS java后端面试题库大全 前言 最近在工作中遇到了一个列表的需求&#xff0c;因为做的是C端&#xff0c;所以对性能…

什么是接口测试?接口测试流程有哪些?我来告诉你

目录 首先&#xff0c;什么是接口呢&#xff1f; 一、常见接口&#xff1a; 二、前端和后端&#xff1a; 三、什么是接口测试&#xff1a; 四、接口组成 五、为什么要做接口测试&#xff1a; 六、接口测试怎么测&#xff1a; 七、用什么工具测 八. 接口测试持续集成 九…

chatgpt赋能Python-python_canbus

Python Canbus&#xff1a;如何使用Python编程语言控制Canbus&#xff1f; 介绍 Canbus被广泛地应用于现代汽车中&#xff0c;是一个用于通讯的协议&#xff0c;允许汽车的各个部分进行通信。为了控制Canbus&#xff0c;很多工程师都使用Python编程语言&#xff0c;因为它简单…

爬虫练习-12306自动购票升级版

文章目录 前言代码更新 前言 hello兄弟们&#xff0c;偷懒归来了。别问为啥这么久没更&#xff0c;问就是失踪了 最近一直在学习Django以及爬虫进阶之类的知识&#xff0c;加上快期末了&#xff0c;一直没有想起来自己还有一个账号没有更新&#xff0c;sorry啦 言归正传&…

SpringBoot - Jackson详解

写在前面 JSON 是目前主流的前后端数据传输方式。在 Spring Boot 项目中&#xff0c;只要添加了 WEB依赖&#xff08;spring-boot-starter-web&#xff09;&#xff0c;就可以很方便地实现 JSON 转换。WEB 依赖默认加入了 jackson-databind 作为 JSON 处理器&#xff0c;我们不…

算法小试炼(差不多相当于重新过一遍ACWING,为了夏令营做点准备)

1.最长不重复子串 这个题目的具体意思就不用我说了&#xff0c;我这里给出两种算法 1&#xff09;暴力搜索 只要机器够快&#xff0c;没有什么是暴搜解决不了的^ ^&#xff08;开玩笑 很简单&#xff0c;我们只需要遍历长度&#xff0c;跟左边界就好了&#xff0c;这个应该没…

测试必知必会的Mock数据方法

Mock数据的含义 那么Mock数据是什么意思呢 首先Mock这个英文单词有模拟的意思&#xff0c;模拟数据通俗的理解就是构造假数据&#xff0c;即Mock数据就是通过构造假数据来达到测试的目的&#xff0c;它广泛运用于功能测试、接口测试、单元测试 在功能测试中&#xff0c;可以…