Fragment案例

news2024/11/17 8:22:09

Fragment案例

1.案例要求

  • 框架布局

  • 项目难点:

1 导航栏的实现,显示导航按钮、切换Fragment

2 每个Fragment的创建、显示

3 Fragment的跳转(从新闻列表到新闻详情,再返回)

  • 涉及的技术:

用RadioGroup及RadioButton实现导航栏

Activity传递参数到要展现的Fragment

从Fragment传递参数给Activity,并调用Activity的某些功能方法

2.案例实现

1)项目结构

2)涉及到的传值的方式

  • Activity往Fragment传值
  • Fragment往Fragment传值或者是Fragment往Activity传值

3)涉及到的布局

  • news_item.xml新闻列表的单项布局
  • fragment_first.xml
  • fragment_second.xml
  • fragment_third.xml
  • main_activity.xml

4)Fragment传值方法

(1)Fragment往Activity

(2)Fragment往Fragment

3.参考代码

1)项目目录

  • 提醒界面
  • 信息界面
  • 我的

2)主布局文件

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

    <TextView
        android:id="@+id/title"
        android:layout_width="match_parent"
        android:layout_height="wrap_content"
        android:text="信息"
        android:textSize="30dp"
        android:gravity="center"
         />
    <LinearLayout
        android:id="@+id/fragment_space"
        android:layout_width="match_parent"
        android:orientation="vertical"
        android:layout_height="0dp"
        android:layout_weight="1"
        ></LinearLayout>
    <RadioGroup
        android:id="@+id/radio_group"
        android:layout_width="match_parent"
        android:layout_height="wrap_content"
        android:orientation="horizontal"
        android:background="@color/white"
        >
    <RadioButton
        android:id="@+id/btn1"
        android:layout_width="0dp"
        android:layout_weight="1"
        android:layout_height="wrap_content"
        android:text="提醒"
        android:textSize="30dp"
        android:gravity="center"
        android:button="@null"
        />
        <RadioButton
            android:id="@+id/btn2"
            android:layout_width="0dp"
            android:layout_weight="1"
            android:layout_height="wrap_content"
            android:text="信息"
            android:textSize="30dp"
            android:gravity="center"
            android:button="@null"
            />
        <RadioButton
            android:id="@+id/btn3"
            android:layout_width="0dp"
            android:layout_weight="1"
            android:layout_height="wrap_content"
            android:text="我的"
            android:textSize="30dp"
            android:gravity="center"
            android:button="@null"
            />
    </RadioGroup>
</LinearLayout>

3)MainActivity代码

public class MainActivity extends AppCompatActivity  implements SecondFragment.MyListener, NewsDetailFragment.FragmentListener {
    RadioGroup group=null;
    RadioButton btn1,btn2,btn3;
    TextView title;
    Fragment secondFragment;
    @Override
    protected void onCreate(Bundle savedInstanceState) {
        super.onCreate(savedInstanceState);
        setContentView(R.layout.activity_main);
        initView();
        btn1.setChecked(true);
    }


    //初始化控件
   public void initView(){
        group=findViewById(R.id.radio_group);
       btn1=findViewById(R.id.btn1);
       btn2=findViewById(R.id.btn2);
       btn3=findViewById(R.id.btn3);
        title=findViewById(R.id.title);
    group.setOnCheckedChangeListener(
        new RadioGroup.OnCheckedChangeListener() {
          @Override
          public void onCheckedChanged(RadioGroup radioGroup, int id) {
            System.out.println(id);
            if (btn1.getId() == id) {
              Fragment firstFragment = new FristFragment();
              FragmentManager manager = getFragmentManager();
              FragmentTransaction transaction = manager.beginTransaction();
              if (manager.findFragmentById(R.id.fragment_space) != null) {
                transaction.remove(manager.findFragmentById(R.id.fragment_space));
              }
              title.setText("提醒");
              transaction.add(R.id.fragment_space, firstFragment);
              transaction.commit();
            }
            if (btn2.getId() == id) {
                secondFragment = new SecondFragment();
              FragmentManager manager = getFragmentManager();
              FragmentTransaction transaction = manager.beginTransaction();
              if (manager.findFragmentById(R.id.fragment_space) != null) {
                transaction.remove(manager.findFragmentById(R.id.fragment_space));
              }
              title.setText("信息");
              ArrayList<News> list = new ArrayList<News>();
              list.add(new News("关于奖学金的发放问题","奖学金的发放问题是一个公共的事情,针对的是品学兼优,家庭困难,热爱祖国的优先!"));
              list.add(new News("关于学院药品的发放问题","即时对有困难的同学进行药品的免费发放!"));
              list.add(new News("关于学生的用电安全整顿问题!","用电问题是一个非常严重的问题!"));
              list.add(new News("我院张三获得最佳教师称号!","张三老师是一个值得所有学生学习的教师!"));
              Bundle bundle = new Bundle();
              bundle.putParcelableArrayList("list", list);
              secondFragment.setArguments(bundle);
              transaction.add(R.id.fragment_space, secondFragment);
              transaction.commit();
            }
            if (btn3.getId() == id) {
              Fragment thirdFragment = new ThirdFragment();
              FragmentManager manager = getFragmentManager();
              FragmentTransaction transaction = manager.beginTransaction();
              if (manager.findFragmentById(R.id.fragment_space) != null) {
                transaction.remove(manager.findFragmentById(R.id.fragment_space));
              }
                title.setText("我的");
              transaction.add(R.id.fragment_space, thirdFragment);
              transaction.commit();
            }
          }
        });
   }

   //回传的数据
    @Override
    public void sendValue(Bundle bundle) {
        /*Intent intent=new Intent();
        intent.setClass(getApplicationContext(),NewsDetailActivity.class);
        intent.putExtras(bundle);
        startActivity(intent);*/
        Fragment newsDetailFragment = new NewsDetailFragment();
        FragmentManager manager = getFragmentManager();
        FragmentTransaction transaction = manager.beginTransaction();
        if (manager.findFragmentById(R.id.fragment_space) != null) {
            transaction.remove(manager.findFragmentById(R.id.fragment_space));
        }
        newsDetailFragment.setArguments(bundle);
        title.setVisibility(View.GONE);
        transaction.replace(R.id.fragment_space, newsDetailFragment);
        transaction.commit();
    }

    //重新显示新闻列表
    @Override
    public void sendCode(Bundle bundle) {
        if (bundle.getInt("code")==200){
          title.setVisibility(View.VISIBLE);
          FragmentManager manager=  getFragmentManager();
          Fragment fragment=secondFragment;
          FragmentTransaction transaction=  manager.beginTransaction();
          transaction.replace(R.id.fragment_space,fragment);
          transaction.commit();
        }
    }
}

4)新闻实体类

//新闻类
public class News implements Serializable, Parcelable {
    private String title;
    private String desc;

    public News(String title, String desc) {
        this.title = title;
        this.desc = desc;
    }

    public News() {
    }

    protected News(Parcel in) {
        title = in.readString();
        desc = in.readString();
    }

    public static final Creator<News> CREATOR = new Creator<News>() {
        @Override
        public News createFromParcel(Parcel in) {
            return new News(in);
        }

        @Override
        public News[] newArray(int size) {
            return new News[size];
        }
    };

    public String getTitle() {
        return title;
    }

    public void setTitle(String title) {
        this.title = title;
    }

    public String getDesc() {
        return desc;
    }

    public void setDesc(String desc) {
        this.desc = desc;
    }

    @Override
    public String toString() {
        return "News{" +
                "title='" + title + '\'' +
                ", desc='" + desc + '\'' +
                '}';
    }

    @Override
    public int describeContents() {
        return 0;
    }

    @Override
    public void writeToParcel(Parcel parcel, int i) {
        parcel.writeString(title);
        parcel.writeString(desc);
    }
}

5)FirstFragment代码和布局文件

(1)Java代码

//提醒
public class FristFragment extends Fragment {

    @Override
    public View onCreateView(LayoutInflater inflater, ViewGroup container,
                             Bundle savedInstanceState) {

        return inflater.inflate(R.layout.fragment_frist, container, false);
    }
}

(2)布局文件

<?xml version="1.0" encoding="utf-8"?>
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
    xmlns:tools="http://schemas.android.com/tools"
    android:orientation="vertical"
    android:layout_width="match_parent"
    android:layout_height="match_parent"
    tools:context=".FristFragment">

    <!-- TODO: Update blank fragment layout -->
    <TextView
        android:layout_width="match_parent"
        android:layout_height="wrap_content"
        android:textSize="30dp"
        android:textColor="@color/black"
        android:text="提醒界面" />

</LinearLayout>

6)SecondFragment和布局文件

(1)Java代码

public class SecondFragment extends Fragment {
    ArrayList<News> list;

    @Override
    public void onAttach(Context context) {
        super.onAttach(context);
        myListener=(MyListener) context;
    }

    @Override
    public void onStart() {
        super.onStart();
    }

    @Override
    public View onCreateView(LayoutInflater inflater, ViewGroup container,
                             Bundle savedInstanceState) {
        // Inflate the layout for this fragment
        Bundle bundle=getArguments();
        list=bundle.getParcelableArrayList("list");
        return inflater.inflate(R.layout.fragment_second, container, false);
    }
    @Override
    public void onActivityCreated(@Nullable Bundle savedInstanceState) {
        super.onActivityCreated(savedInstanceState);
        //创建列表项

        if (list!=null){
            for (Object s:list){
                System.out.println(s);
                ListView listView=getActivity().findViewById(R.id.listview);
                List<Map<String,String>>  newsList=new ArrayList<>();
                for(int i = 0; i < list.size(); i++) {
                    Map map=new HashMap<>();
                    map.put("newstitle",list.get(i).getTitle());
                    newsList.add(map);
                }
                SimpleAdapter adapter=new SimpleAdapter(getActivity().getApplicationContext(),newsList,R.layout.news_item,new String[]{"newstitle"},new int[]{R.id.newstitle});
                listView.setAdapter(adapter);
                //设置事件监听
                listView.setOnItemClickListener(new AdapterView.OnItemClickListener() {
                    @Override
                    public void onItemClick(AdapterView<?> adapterView, View view, int position, long id) {
                    //方法1:直接从Fragment给Activity传递数据
                    /*    TextView this_news= view.findViewById(R.id.newstitle);
                       Intent intent=new Intent();
                        intent.setClass(getActivity().getApplicationContext(),NewsDetailActivity.class);
                        intent.putExtra("this_newsTitle",list.get(position).getTitle());
                        intent.putExtra("this_newsDesc",list.get(position).getDesc());
                        getActivity().startActivity(intent);*/

                        //方法2:从Fragment往Activity传递数据(回调接口的方式)
                        Bundle bundle=new Bundle();
                        bundle.putString("this_newsTitle",list.get(position).getTitle());
                        bundle.putString("this_newsDesc",list.get(position).getDesc());
                        myListener.sendValue(bundle);
                    }
                });
            }
        }


    }
    //定义回调接口
    public interface MyListener{
        public void sendValue(Bundle bundle);
    }

    private MyListener myListener;
}

(2)布局文件

<?xml version="1.0" encoding="utf-8"?>
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
    xmlns:tools="http://schemas.android.com/tools"
    android:layout_width="match_parent"
    android:orientation="vertical"
    android:layout_height="match_parent"
    tools:context=".SecondFragment">

    <!-- TODO: Update blank fragment layout -->
    <TextView
        android:layout_width="match_parent"
        android:layout_height="wrap_content"
        android:textSize="30dp"
        android:textColor="@color/black"
        android:text="新闻列表" />
    <ListView
        android:id="@+id/listview"
        android:layout_width="match_parent"
        android:layout_height="wrap_content"
        android:divider="@mipmap/divider"
        android:showDividers="end"
        >

    </ListView>

</LinearLayout>

7)ThirdFragment和布局文件

(1)Java代码

public class ThirdFragment extends Fragment {

    @Override
    public View onCreateView(LayoutInflater inflater, ViewGroup container,
                             Bundle savedInstanceState) {
        return inflater.inflate(R.layout.fragment_third, container, false);
    }
}

(2)布局文件

<?xml version="1.0" encoding="utf-8"?>
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
    xmlns:tools="http://schemas.android.com/tools"
    android:orientation="vertical"
    android:layout_width="match_parent"
    android:layout_height="match_parent"
    tools:context=".ThirdFragment">

    <!-- TODO: Update blank fragment layout -->
    <TextView
        android:layout_width="match_parent"
        android:layout_height="wrap_content"
        android:textSize="30dp"
        android:textColor="@color/black"
        android:text="我的界面" />
</LinearLayout>

8)显示具体的新闻信息

  • 方案1:采用Activity显示的,代码中被注释的就是被启动的方式
  • 方案2:用Fragment进行显示

(1)方案1代码

(一)Java代码

//显示跳转后的页面的信息
public class NewsDetailActivity extends AppCompatActivity {

    @Override
    protected void onCreate(Bundle savedInstanceState) {
        super.onCreate(savedInstanceState);
        setContentView(R.layout.activity_news_detail);
        String newsTitle= getIntent().getExtras().getString("this_newsTitle");
        String newsDesc= getIntent().getExtras().getString("this_newsDesc");
        TextView this_newsTitle=findViewById(R.id.this_newsTitle);
        TextView this_newsDesc=findViewById(R.id.this_newsDesc);
        this_newsTitle.setText(newsTitle);
        this_newsDesc.setText(newsDesc);
    }

    //返回到展示信息的Fragment
    public void backNewsFrgment(View view) {
        finish();
    }
}

(二)布局文件

<?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:orientation="vertical"
    android:layout_width="match_parent"
    android:layout_height="match_parent"
    tools:context=".NewsDetailActivity">

    <TextView
        android:id="@+id/this_newsTitle"
        android:layout_width="match_parent"
        android:layout_height="wrap_content"
        android:textSize="30dp"
        android:textColor="@color/blue"
        />
    <TextView
        android:id="@+id/this_newsDesc"
        android:layout_width="match_parent"
        android:layout_height="wrap_content"
        android:textSize="22dp"
        />
    <Button
        android:layout_width="match_parent"
        android:layout_height="wrap_content"
        android:text="返回"
        android:textSize="30dp"
        android:onClick="backNewsFrgment"
        />
</LinearLayout>

(2)方案2:采用Fragment

(一)Java代码

//采用Fragment的方式显示详情的信息
public class NewsDetailFragment extends Fragment {
     String this_newsTitle,this_newsDesc;
    @Override
    public View onCreateView(LayoutInflater inflater, ViewGroup container,
                             Bundle savedInstanceState) {
        Bundle bundle=getArguments();
        this_newsTitle=bundle.getString("this_newsTitle");
        this_newsDesc=bundle.getString("this_newsDesc");
        return inflater.inflate(R.layout.fragment_news_detail, container, false);
    }

    @Override
    public void onActivityCreated(@Nullable Bundle savedInstanceState) {
        super.onActivityCreated(savedInstanceState);
        TextView this_newsTitle2=getActivity().findViewById(R.id.this_newsTitle2);
        TextView this_newsDesc2=getActivity().findViewById(R.id.this_newsDesc2);
        Button backNewsFrgment2=getActivity().findViewById(R.id.backNewsFrgment2);
        this_newsTitle2.setText(this_newsTitle);
        this_newsDesc2.setText(this_newsDesc);
        backNewsFrgment2.setOnClickListener(new View.OnClickListener() {
            @Override
            public void onClick(View view) {
                Bundle bundle=new Bundle();
                bundle.putInt("code",200);
                fragmentListener.sendCode(bundle);
            }
        });


    }

    @Override
    public void onAttach(Context context) {
        super.onAttach(context);
        fragmentListener= (FragmentListener) context;
    }

    private FragmentListener fragmentListener;
    interface FragmentListener{
        public void sendCode(Bundle bundle);
    }
}

(2)布局文件

<?xml version="1.0" encoding="utf-8"?>
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
    xmlns:tools="http://schemas.android.com/tools"
        android:orientation="vertical"
    android:layout_width="match_parent"
    android:layout_height="match_parent"
    tools:context=".NewsDetailFragment">
    <TextView
        android:id="@+id/this_newsTitle2"
        android:layout_width="match_parent"
        android:layout_height="wrap_content"
        android:textSize="30dp"
        android:textColor="@color/blue"
        />
    <TextView
        android:id="@+id/this_newsDesc2"
        android:layout_width="match_parent"
        android:layout_height="wrap_content"
        android:textSize="22dp"
        />
    <Button
        android:id="@+id/backNewsFrgment2"
        android:layout_width="match_parent"
        android:layout_height="wrap_content"
        android:text="返回"
        android:textSize="30dp"
        />

</LinearLayout>

9)效果图

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

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

相关文章

【学习笔记07】vue3移动端的适配

目录1、创建一个项目并启动2、设置根字体大小和单位转化3、去掉边框距离4、css的嵌套使用5、连接到手机上显示6、vant ui 库的使用6.1 基础用法6.2 底部导航栏7、模拟锤子商城7.1 请求数据7.2 解决跨越7.3 组件切换7.4 轮播图的实现1、创建一个项目并启动 npm init vuelatestcd…

【OpenCV-Python】教程:7-4 KMeans 应用

OpenCV Python KMeans 应用 【目标】 使用 cv2.kmeans 对数据进行聚类 【代码】 1. 单个特征的 KMeans # 单特征数据的聚类 import numpy as np import cv2 from matplotlib import pyplot as pltx np.random.randint(25,100,25) y np.random.randint(175,255,25)z np.h…

Linux系统下管理员账号root忘记密码怎么找回

忘记root密码一般有两种情况&#xff1a; 一种是登上了root账号&#xff0c;但是忘记密码了&#xff0c;这种情况比较简单&#xff0c;在终端即可实现修改密码&#xff1b; 一种是登录不上root账号&#xff0c;这种情况稍微麻烦些&#xff0c;需要开机时进行一系列操作。 不能登…

【源码共读】Css-In-Js 的实现 classNames 库

classNames是一个简单的且实用的JavaScript应用程序&#xff0c;可以有条件的将多个类名组合在一起。它是一个非常有用的工具&#xff0c;可以用来动态的添加或者删除类名。 仓库地址&#xff1a;classNames 使用 根据classNames的README&#xff0c;可以发现库的作者对这个…

Spring 事务失效的常见八大场景,注意避坑

1. 抛出检查异常导致事务不能正确回滚 Servicepublic class Service1 {Autowiredprivate AccountMapper accountMapper;Transactionalpublic void transfer(int from, int to, int amount) throws FileNotFoundException {int fromBalance accountMapper.findBalanceBy(from);…

【源码共读】学习 axios 源码整体架构 (II)

源码分析 跳转至Axios.js文件中 // 构造函数 constructor(instanceConfig) {this.defaults instanceConfig// 创建对应的拦截器this.interceptors {request: new InterceptorManager(),response: new InterceptorManager()} } 那么&#xff0c;拦截器是怎么创建的呢 首先&a…

【云服务器 ECS 实战】一文掌握弹性伸缩服务原理及配置方法

1. 弹性伸缩概述2. 实现模式3. 基于 GRE 实现 VPC 的互联4. 弹性伸缩服务的配置使用4.1 创建伸缩组4.2 伸缩配置4.3 创建伸缩规则1. 弹性伸缩概述 弹性伸缩&#xff08;Auto Scaling&#xff09;就是自动为我们调整弹性计算资源大小&#xff0c;以满足业务需求的变化&#xff…

javaee之spring1

什么是Spring 一、Spring的优势 二、Spring的体系结构 先说一下从什么位置去下载Spring的源码 进入Spring官网&#xff0c;找到Spring Framework框架 点进去之后&#xff0c;找到如下位置&#xff0c;继续点击 进去之后&#xff0c;继续下拉&#xff0c;找到下面这个位置点进…

慕了,我要是早点看到这篇写 Kafka 的分区管理的文章就好了

Kafka可以将主题划分为多个分区&#xff08;Partition&#xff09;&#xff0c;会根据分区规则选择把消息存储到哪个分区中&#xff0c;只要如果分区规则设置的合理&#xff0c;那么所有的消息将会被均匀的分布到不同的分区中&#xff0c;这样就实现了负载均衡和水平扩展。另外…

可以做抽奖活动的微信小程序在哪里做_分享抽奖活动小程序制作步骤

越来越多的企业开始了解微信抽奖游戏的实用性和价值&#xff0c;因为用户更喜欢简单有趣的游戏抽奖方式&#xff0c;如大转盘、摇一摇、抢福袋、砸金蛋、摇一摇、刮刮卡等互动抽奖游戏。 如果企业想制作这种抽奖游戏&#xff0c;都倾向使用市场上的各种抽奖制作软件&#xff0c…

(Java)车厢重组

车厢重组一、题目描述二、输入格式三、输出格式四、样例&#xff08;1&#xff09;样例输入&#xff08;2&#xff09;样例输出五、正确代码六、思路一、题目描述 在一个旧式的火车站旁边有一座桥&#xff0c;其桥面可以绕河中心的桥墩水平旋转。一个车站的职工发现桥的长度最…

网络技术——网络运维工程师必会的网络知识(2)(详细讲解)

作者简介&#xff1a;一名在校云计算网络运维学生、每天分享网络运维的学习经验、和学习笔记。 座右铭&#xff1a;低头赶路&#xff0c;敬事如仪 个人主页&#xff1a;网络豆的主页​​​​​​ 目录 前言 网络传输介质 信号分类和失真 双绞线分类&#xff1a; 双绞线…

非计算机专业,可以学好编程吗?

现在IT行业越来越火热&#xff0c;想要学习编程的人也越来越多。IT行业的薪资连续好几年赶超金融行业&#xff0c;位居行业之首&#xff0c;有太多人转行跨界&#xff0c;想要进入这个领域&#xff0c;那么作为初学者的你&#xff0c;是不是也很困惑&#xff0c;非科班&#xf…

Web入门开发【四】- 基础语言

欢迎来到霍大侠的小院&#xff0c;我们来学习Web入门开发的系列课程。 首先我们来了解下这个课程能学到什么&#xff1f; 1、你将可以掌握Web网站的开发全过程。 2、了解基础的HTML&#xff0c;CSS&#xff0c;JavaScript语言。 3、开发自己的第一个网站。 4、认识很多对编…

Java笔记之多线程(一)

文章目录前言一、什么是进程与线程&#xff1f;1.进程2.线程3.其他相关概念二、如何创建线程1.继承Thread类&#xff0c;重新run方法2.实现Runnable接口3.通过Callable和Future创建线程4. 继承Thread vs实现Runnable的区别三、用户线程和守护线程守护线程的使用设置成守护线程四…

【Python百日进阶-数据分析】Day137 - plotly旭日图:go.sunburst()实例

文章目录4.2 带有 go.Sunburst 的基本旭日图4.2.1 基本go.sunburst()旭日图4.2.2 带有重复标签的旭日图4.2.3 分支值4.2.4 大量切片4.2.5 控制旭日形扇区内的文本方向4.2.6 使用 uniformtext 控制文本字体大小4.2.7 具有连续色标的旭日图4.2.8 Dash中的go.sunburst()4.2 带有 g…

Android hilt 依赖注入使用详解

文章目录官方文档添加依赖初始化hiltMainActivity 使用共享类在 MainActivity 添加依赖注入ActivityScoped 作用域Singleton 作用域构造参数&#xff0c;添加 Context参数ApplicationContext、ActivityContext官方文档 https://developer.android.com/training/dependency-inj…

【Linux】缓冲区/磁盘inode/动静态库制作

目录 一、缓冲区 1、缓冲区的概念 2、缓冲区的意义 3、缓冲区刷新策略 4、同一份代码&#xff0c;打印结果不同 5、仿写FILE 5.1myFILE.h 5.2myFILE.c 5.3main.c 6、内核缓冲区 二、了解磁盘 1、磁盘的物理结构 2、磁盘的存储结构 2.1磁盘的定位 3、磁盘的抽象…

基于价值迭代求解迷宫寻路问题

摘 要 迷宫寻路是人工智能和计算机科学中一个经典的问题。它涉及在迷宫中找到一条从起点到终点的最短路径。这个问题可以用来模拟真实世界中的许多情况&#xff0c;例如机器人在工厂中自动导航&#xff0c;搜索引擎在网络中寻找信息&#xff0c;或者人类在城市中导航。 迷宫寻路…

【Javascript基础】--零基础--超详细且简洁的Javascript笔记--简介(01)

参考资料&#xff1a; 【现代Javascript教程】https://zh.javascript.info/ 【MDN】https://developer.mozilla.org/zh-CN/ 笔记仅作为学习交流载体&#xff0c;无任何商业或盈利目的 JavaScript 简介 了解 JavaScript 有什么特别之处&#xff0c;我们可以用它实现什么&#…