Android 天气APP(八)城市切换 之 自定义弹窗与使用

然后在模块的utils包中新建一个LiWindow类

在这里插入图片描述

代码如下:

package com.llw.mvplibrary.utils;

import android.app.Activity;

import android.content.Context;

import android.view.Gravity;

import android.view.LayoutInflater;

import android.view.View;

import android.view.ViewGroup;

import android.view.WindowManager;

import android.widget.PopupWindow;

import com.llw.mvplibrary.R;

import java.util.HashMap;

import java.util.Map;

/**

  • 自定义弹窗

*/

public class LiWindow {

private LiWindow mLiWindow;

private PopupWindow mPopupWindow;

private LayoutInflater inflater;

private View mView;

private Context mContext;

private WindowManager show;

WindowManager.LayoutParams context;

private Map<String,Object> mMap = new HashMap<>();

public Map<String, Object> getmMap() {

return mMap;

}

public LiWindow(Context context){

this.mContext = context;

inflater = LayoutInflater.from(context);

mLiWindow = this;

}

public LiWindow(Context context, Map<String,Object> map){

this.mContext = context;

this.mMap = map;

inflater = LayoutInflater.from(context);

}

/**

  • 右侧显示 自适应大小

  • @param mView

*/

public void showRightPopupWindow(View mView) {

mPopupWindow = new PopupWindow(mView,

ViewGroup.LayoutParams.WRAP_CONTENT, ViewGroup.LayoutParams.WRAP_CONTENT , true);

mPopupWindow.setContentView(mView);

mPopupWindow.setOutsideTouchable(true);//点击空白处不关闭弹窗 true为关闭

mPopupWindow.setFocusable(true);

mPopupWindow.setAnimationStyle(R.style.AnimationRightFade); //设置动画

mPopupWindow.showAtLocation(mView, Gravity.RIGHT,0 ,0);

setBackgroundAlpha(0.5f,mContext);

WindowManager.LayoutParams nomal = ((Activity) mContext).getWindow().getAttributes();

nomal.alpha = 0.5f;

((Activity) mContext).getWindow().setAttributes(nomal);

mPopupWindow.setOnDismissListener(closeDismiss);

}

/**

  • 右侧显示 高度占满父布局

  • @param mView

*/

public void showRightPopupWindowMatchParent(View mView) {

mPopupWindow = new PopupWindow(mView,

ViewGroup.LayoutParams.WRAP_CONTENT, ViewGroup.LayoutParams.MATCH_PARENT , true);

mPopupWindow.setContentView(mView);

mPopupWindow.setOutsideTouchable(true);//点击空白处不关闭弹窗 true为关闭

mPopupWindow.setFocusable(true);

mPopupWindow.setAnimationStyle(R.style.AnimationRightFade); //设置动画

mPopupWindow.showAtLocation(mView, Gravity.RIGHT,0 ,0);

setBackgroundAlpha(0.5f,mContext);

WindowManager.LayoutParams nomal = ((Activity) mContext).getWindow().getAttributes();

nomal.alpha = 0.5f;

((Activity) mContext).getWindow().setAttributes(nomal);

mPopupWindow.setOnDismissListener(closeDismiss);

}

/**

  • 底部显示

  • @param mView

*/

public void showBottomPopupWindow(View mView) {

mPopupWindow = new PopupWindow(mView,

ViewGroup.LayoutParams.MATCH_PARENT, ViewGroup.LayoutParams.WRAP_CONTENT, true);

mPopupWindow.setContentView(mView);

mPopupWindow.setOutsideTouchable(true);//点击空白处不关闭弹窗 true为关闭

mPopupWindow.setFocusable(true);

mPopupWindow.setAnimationStyle(R.style.AnimationBottomFade); //设置动画

mPopupWindow.showAtLocation(mView, Gravity.BOTTOM, 0, 0);

setBackgroundAlpha(0.5f,mContext);

WindowManager.LayoutParams nomal = ((Activity) mContext).getWindow().getAttributes();

nomal.alpha = 0.5f;

((Activity) mContext).getWindow().setAttributes(nomal);

mPopupWindow.setOnDismissListener(closeDismiss);

}

public static void setBackgroundAlpha(float bgAlpha,Context mContext){

WindowManager.LayoutParams lp = ((Activity) mContext).getWindow().getAttributes();

lp.alpha = bgAlpha;

((Activity) mContext).getWindow().addFlags(WindowManager.LayoutParams.FLAG_DIM_BEHIND);

((Activity) mContext)​
.getWindow().setAttributes(lp);

}

/**

  • 设置弹窗动画

  • @param animId

  • @return showPopu

*/

public LiWindow setAnim(int animId) {

if (mPopupWindow != null) {

mPopupWindow.setAnimationStyle(animId);

}

return mLiWindow;

}

//弹窗消失时关闭阴影

public PopupWindow.OnDismissListener closeDismiss = new PopupWindow.OnDismissListener() {

@Override

public void onDismiss() {

WindowManager.LayoutParams nomal = ((Activity)mContext).getWindow().getAttributes();

nomal.alpha = 1f;

((Activity)mContext).getWindow().setAttributes(nomal);

}

};

public void closePopupWindow() {

if (mPopupWindow != null) {

mPopupWindow.dismiss();

}

}

/*

使用方法

  • LiWindow liWindow = new LiWindow(MainActivity.this);

View mView = LayoutInflater.from(MainActivity.this).inflate(R.layout.center_layout,null);

liWindow.showCenterPopupWindow(mView);

  • */

}

弹窗也是需要布局文件的,现在创建一个新的布局文件,用于显示城市列表。

返回图标:

在这里插入图片描述

在项目的layout下创建一个名为window_city_list.xml的布局文件

代码如下:

<?xml version="1.0" encoding="utf-8"?>

<RelativeLayout xmlns:android=“http://schemas.android.com/apk/res/android”

xmlns:app=“http://schemas.android.com/apk/res-auto”

android:orientation=“vertical”

android:fitsSystemWindows=“true”

android:layout_width=“wrap_content”

android:layout_height=“wrap_content”>

<LinearLayout

android:orientation=“vertical”

android:background=“#FFF”

android:layout_width=“240dp”

android:layout_height=“match_parent”>

<RelativeLayout

android:layout_width=“match_parent”

android:layout_height=“wrap_content”>

<androidx.appcompat.widget.Toolbar

android:layout_width=“match_parent”

android:layout_height=“?attr/actionBarSize”

app:contentInsetLeft=“16dp”

app:popupTheme=“@style/AppTheme.PopupOverlay”>

<TextView

android:id=“@+id/tv_title”

android:layout_width=“wrap_content”

android:layout_height=“wrap_content”

android:layout_gravity=“center”

android:textSize=“16sp”

android:textColor=“#000”

android:text=“中国” />

</androidx.appcompat.widget.Toolbar>

<ImageView

android:visibility=“gone”

android:layout_marginLeft=“@dimen/dp_10”

android:layout_centerVertical=“true”

android:id=“@+id/iv_back_city”

android:src=“@mipmap/icon_page_return”

android:padding=“15dp”

android:layout_width=“40dp”

android:layout_height=“40dp”/>

<ImageView

android:visibility=“gone”

android:layout_marginLeft=“@dimen/dp_10”

android:layout_centerVertical=“true”

android:id=“@+id/iv_back_area”

android:src=“@mipmap/icon_page_return”

android:padding=“15dp”

android:layout_width=“40dp”

android:layout_height=“40dp”/>

<View

android:layout_width=“match_parent”

android:layout_height=“0.5dp”

android:background=“#EEEEEE”/>

<androidx.recyclerview.widget.RecyclerView

android:id=“@+id/rv”

android:layout_width=“match_parent”

android:layout_height=“match_parent”/>

为了让点击的时候有一个效果,在模块的res文件下的drawable下创建一个rounded_corners.xml的样式文件,点击的水波纹效果

在这里插入图片描述

代码如下

<?xml version="1.0" encoding="utf-8"?>

接下来在res文件下下新建一个drawable-v21的文件夹,文件夹下创建一个bg_white.xml

在这里插入图片描述

代码如下:

<?xml version="1.0" encoding="utf-8"?>

<ripple xmlns:android=“http://schemas.android.com/apk/res/android”

android:color=“#20000000”

android:drawable=“@drawable/rounded_corners”/>

点击的样式做好了,接下来创建城市列表的item

在项目的layout文件夹下创建一个名为item_city_list.xml的布局文件

在这里插入图片描述

代码如下:

<?xml version="1.0" encoding="utf-8"?>

<LinearLayout xmlns:android=“http://schemas.android.com/apk/res/android”

android:id=“@+id/item_city”

android:layout_width=“match_parent”

android:layout_height=“wrap_content”

android:background=“#FFF”

android:orientation=“vertical”>

<TextView

android:id=“@+id/tv_city”

android:layout_width=“match_parent”

android:layout_height=“wrap_content”

android:foreground=“@drawable/bg_white”

android:gravity=“center”

android:padding=“10dp”

android:textColor=“#FF000000”

android:textSize=“15sp” />

<View

android:layout_width=“match_parent”

android:layout_height=“0.5dp”

android:background=“#EEEEEE”/>

接下来就是要创建一个实体Bean用来接收JSON中解析出来的城市数据,里面包含了省、市、区/县

在项目的bean包下新建一个CityResponse

在这里插入图片描述代码如下:

package com.llw.goodweather.bean;

import java.util.List;

public class CityResponse {

/**

  • name : 北京市

  • city : [{“name”:“北京市”,“area”:[“东城区”,“西城区”,“崇文区”,“宣武区”,“朝阳区”,“丰台区”,“石景山区”,“海淀区”,“门头沟区”,“房山区”,“通州区”,“顺义区”,“昌平区”,“大兴区”,“平谷区”,“怀柔区”,“密云县”,“延庆县”]}]

*/

private String name;

private List city;

public String getName() {

return name;

}

public void setName(String name) {

this.name = name;

}

public List getCity() {

return city;

}

public void setCity(List city) {

this.city = city;

}

public static class CityBean {

/**

  • name : 北京市

  • area : [“东城区”,“西城区”,“崇文区”,“宣武区”,“朝阳区”,“丰台区”,“石景山区”,“海淀区”,“门头沟区”,“房山区”,“通州区”,“顺义区”,“昌平区”,“大兴区”,“平谷区”,“怀柔区”,“密云县”,“延庆县”]

*/

private String name;

private List area;

public String getName() {

return name;

}

public void setName(String name) {

this.name = name;

}

public static class AreaBean {

/**

  • name : 北京市

  • area : [“东城区”,“西城区”,“崇文区”,“宣武区”,“朝阳区”,“丰台区”,“石景山区”,“海淀区”,“门头沟区”,“房山区”,“通州区”,“顺义区”,“昌平区”,“大兴区”,“平谷区”,“怀柔区”,“密云县”,“延庆县”]

*/

private String name;

public String getName() {

return name;

}

public void setName(String name) {

this.name = name;

}

}

}

}

接下来创建适配器,需要三个适配器,省、市、区/县。在adapter包下创建ProvinceAdapterCityAdapterAreaAdapter

在这里插入图片描述

ProvinceAdapter.java

package com.llw.goodweather.adapter;

import androidx.annotation.Nullable;

import com.chad.library.adapter.base.BaseQuickAdapter;

import com.chad.library.adapter.base.BaseViewHolder;

import com.llw.goodweather.R;

import com.llw.goodweather.bean.CityResponse;

import java.util.List;

/**

  • 省列表适配器

*/

public class ProvinceAdapter extends BaseQuickAdapter<CityResponse, BaseViewHolder> {

public ProvinceAdapter(int layoutResId, @Nullable List data) {

super(layoutResId, data);

}

@Override

protected void convert(BaseViewHolder helper, CityResponse item) {

helper.setText(R.id.tv_city,item.getName());//省名称

helper.addOnClickListener(R.id.item_city);//点击之后进入市级列表

}

}

CityAdapter.java

package com.llw.goodweather.adapter;

import androidx.annotation.Nullable;

import com.chad.library.adapter.base.BaseQuickAdapter;

import com.chad.library.adapter.base.BaseViewHolder;

import com.llw.goodweather.R;

import com.llw.goodweather.bean.CityResponse;

import java.util.List;

/**

  • 市列表适配器

*/

public class CityAdapter extends BaseQuickAdapter<CityResponse.CityBean, BaseViewHolder> {

public CityAdapter(int layoutResId, @Nullable List<CityResponse.CityBean> data) {

super(layoutResId, data);

}

@Override

protected void convert(BaseViewHolder helper, CityResponse.CityBean item) {

helper.setText(R.id.tv_city,item.getName());//市名称

helper.addOnClickListener(R.id.item_city);//点击事件 点击进入区/县列表

}

}

AreaAdapter.java

package com.llw.goodweather.adapter;

import androidx.annotation.Nullable;

import com.chad.library.adapter.base.BaseQuickAdapter;

import com.chad.library.adapter.base.BaseViewHolder;

import com.llw.goodweather.R;

import com.llw.goodweather.bean.CityResponse;

import java.util.List;

/**

  • 区/县列表适配器

*/

public class AreaAdapter extends BaseQuickAdapter<CityResponse.CityBean.AreaBean, BaseViewHolder> {

public AreaAdapter(int layoutResId, @Nullable List<CityResponse.CityBean.AreaBean> data) {

super(layoutResId, data);

}

@Override

protected void convert(BaseViewHolder helper, CityResponse.CityBean.AreaBean item) {

helper.setText(R.id.tv_city,item.getName());//区/县的名称

helper.addOnClickListener(R.id.item_city);//点击事件 点击之后得到区/县 然后查询天气数据

}

}

万事具备了,接下来就是在MainActivity.java里面实现这个城市弹窗数据的渲染了。

在这里插入图片描述

private List list;//字符串列表

private List provinceList;//省列表数据

private List<CityResponse.CityBean> citylist;//市列表数据

private List<CityResponse.CityBean.AreaBean> arealist;//区/县列表数据

ProvinceAdapter provinceAdapter;//省数据适配器

CityAdapter cityAdapter;//市数据适配器

AreaAdapter areaAdapter;//县/区数据适配器

String provinceTitle;//标题

LiWindow liWindow;//自定义弹窗

使用弹窗

在这里插入图片描述

/**

  • 城市弹窗

*/

private void showCityWindow() {

provinceList = new ArrayList<>();

citylist = new ArrayList<>();

arealist = new ArrayList<>();

list = new ArrayList<>();

liWindow = new LiWindow(context);

final View view = LayoutInflater.from(context).inflate(R.layout.window_city_list, null);

ImageView areaBack = (ImageView) view.findViewById(R.id.iv_back_area);

ImageView cityBack = (ImageView) view.findViewById(R.id.iv_back_city);

TextView windowTitle = (TextView) view.findViewById(R.id.tv_title);

RecyclerView recyclerView = (RecyclerView) view.findViewById(R.id.rv);

liWindow.showRightPopupWindow(view);

}

//点击事件

@OnClick(R.id.iv_city_select)

public void onViewClicked() {//显示城市弹窗

showCityWindow();

}

接下来就是花里胡哨的操作了,首先我希望我的列表市动画展示出来的。

先创建动画文件,在模块中的anim文件

加下

在这里插入图片描述

item_animation_from_bottom.xml

<?xml version="1.0" encoding="utf-8"?>

<set xmlns:android=“http://schemas.android.com/apk/res/android”

android:duration=“500”>

<translate

android:interpolator=“@android:anim/accelerate_decelerate_interpolator”

android:fromYDelta=“50%p”

android:toYDelta=“0”/>

<alpha

android:fromAlpha=“0”

android:toAlpha=“1”

android:interpolator=“@android:anim/accelerate_decelerate_interpolator” />

item_animation_from_right.xml

<?xml version="1.0" encoding="utf-8"?>

<set xmlns:android=“http://schemas.android.com/apk/res/android”

android:duration=“500”>

<translate

android:interpolator=“@android:anim/decelerate_interpolator”

android:fromXDelta=“100%p”

android:toXDelta=“0”/>

<alpha

android:fromAlpha=“0.5”

android:toAlpha=“1”

android:interpolator=“@android:anim/accelerate_decelerate_interpolator”/>

layout_animation_from_bottom.xml

<?xml version="1.0" encoding="utf-8"?>

<layoutAnimation

xmlns:android=“http://schemas.android.com/apk/res/android”

android:animation=“@anim/item_animation_from_bottom”

android:delay=“15%”

android:animationOrder=“normal” />

layout_animation_slide_right.xml

<?xml version="1.0" encoding="utf-8"?>

<layoutAnimation

xmlns:android=“http://schemas.android.com/apk/res/android”

android:animation=“@anim/item_animation_from_right”

android:delay=“10%”

android:animationOrder=“normal”

/>

工具类

在模块的utils包下创建RecyclerViewAnimation

在这里插入图片描述

RecyclerViewAnimation.java

代码如下:

package com.llw.mvplibrary.utils;

import android.content.Context;

import android.view.animation.AnimationUtils;

import android.view.animation.LayoutAnimationController;

import androidx.recyclerview.widget.RecyclerView;

import com.llw.mvplibrary.R;

/**

  • 动画RecycleView

*/

public class RecyclerViewAnimation {

//数据变化时显示动画 底部动画

public static void runLayoutAnimation(final RecyclerView recyclerView) {

final Context context = recyclerView.getContext();

final LayoutAnimationController controller =

AnimationUtils.loadLayoutAnimation(context, R.anim.layout_animation_from_bottom);

recyclerView.setLayoutAnimation(controller);

recyclerView.getAdapter().notifyDataSetChanged();

recyclerView.scheduleLayoutAnimation();

}

//数据变化时显示动画 右侧动画

public static void runLayoutAnimationRight(final RecyclerView recyclerView) {

final Context context = recyclerView.getContext();

final LayoutAnimationController controller =

AnimationUtils.loadLayoutAnimation(context, R.anim.layout_animation_slide_right);

recyclerView.setLayoutAnimation(controller);

recyclerView.getAdapter().notifyDataSetChanged();

recyclerView.scheduleLayoutAnimation();

}

}

MainActivity.java代码中

在这里插入图片描述

initCityData(recyclerView,areaBack,cityBack,windowTitle);//加载城市列表数据

/**

  • 省市县数据渲染

  • @param recyclerView 列表

  • @param areaBack 区县返回

  • @param cityBack 市返回

  • @param windowTitle 窗口标题

*/

private void initCityData(RecyclerView recyclerView,ImageView areaBack,ImageView cityBack,TextView windowTitle) {

//初始化省数据 读取省数据并显示到列表中

try {

InputStream inputStream = getResources().getAssets().open(“City.txt”);//读取数据

BufferedReader bufferedReader = new BufferedReader(new InputStreamReader(inputStream));

StringBuffer stringBuffer = new StringBuffer();

String lines = bufferedReader.readLine();

while (lines != null) {

stringBuffer.append(lines);

最后

小编这些年深知大多数初中级Android工程师,想要提升自己,往往是自己摸索成长,自己不成体系的自学效果低效漫长且无助

因此我收集整理了一份《2024年Android移动开发全套学习资料》,初衷也很简单,就是希望能够帮助到想自学提升又不知道该从何学起的朋友。

一个人可以走的很快,但一群人才能走的更远!不论你是正从事IT行业的老鸟或是对IT行业感兴趣的新人

都欢迎加入我们的的圈子(技术交流、学习资源、职场吐槽、大厂内推、面试辅导),让我们一起学习成长!

资料⬅专栏获取
ew.scheduleLayoutAnimation();

}

}

MainActivity.java代码中

在这里插入图片描述

initCityData(recyclerView,areaBack,cityBack,windowTitle);//加载城市列表数据

/**

  • 省市县数据渲染

  • @param recyclerView 列表

  • @param areaBack 区县返回

  • @param cityBack 市返回

  • @param windowTitle 窗口标题

*/

private void initCityData(RecyclerView recyclerView,ImageView areaBack,ImageView cityBack,TextView windowTitle) {

//初始化省数据 读取省数据并显示到列表中

try {

InputStream inputStream = getResources().getAssets().open(“City.txt”);//读取数据

BufferedReader bufferedReader = new BufferedReader(new InputStreamReader(inputStream));

StringBuffer stringBuffer = new StringBuffer();

String lines = bufferedReader.readLine();

while (lines != null) {

stringBuffer.append(lines);

最后

小编这些年深知大多数初中级Android工程师,想要提升自己,往往是自己摸索成长,自己不成体系的自学效果低效漫长且无助

因此我收集整理了一份《2024年Android移动开发全套学习资料》,初衷也很简单,就是希望能够帮助到想自学提升又不知道该从何学起的朋友。

[外链图片转存中…(img-sC4HufuL-1719079652515)]一个人可以走的很快,但一群人才能走的更远!不论你是正从事IT行业的老鸟或是对IT行业感兴趣的新人

都欢迎加入我们的的圈子(技术交流、学习资源、职场吐槽、大厂内推、面试辅导),让我们一起学习成长!

资料⬅专栏获取

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

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

相关文章

element-ui里message抖动问题

由于element默认屏蔽滚动条&#xff0c;导致取消时弹message时 侧边滚动栏突然回来后引起抖动问题 是由于打开弹窗时出现遮罩层dialog对话框 时引起了元素内容超出自身尺寸 对应的overflow样式内容为hidden&#xff0c;且新建了一个class类内容为增加17 内右边距&#xff0c;当…

某md5魔改-js还原

我们先把js 扣下来看一下 整体扣一下 ,运行后发现结果一致。 到这里就结束了吗,不不,这次我们要看到它里面具体的变动 <-_-> 先看一下md5的初步加密流程 void MD5Init(MD5_CTX *context) {context->count[0] = 0;context->count[1] = 0;context->state[0]…

AI网络爬虫:搜狗图片的时间戳反爬虫应对策略

如何批量爬取下载搜狗图片搜索结果页面的图片&#xff1f;以孙允珠这个关键词的搜索结果为例&#xff1a; https://pic.sogou.com/pics?query%E5%AD%99%E5%85%81%E7%8F%A0&mode2 翻页规律如下&#xff1a; https://pic.sogou.com/napi/pc/searchList?mode2&start38…

Flutter开发环境搭建和调试

[你的Flutter文件夹路径]\flutter\bin 这样我们的Flutter SDK的环境变量就配置完毕了。接下来在命令提示符窗口中输入命令&#xff1a; flutter doctor 它可以帮助我们检查Flutter环境变量是否设置成功&#xff0c;Android SDK是否下载以及配置好环境变量等等。如果有相关的…

【接口自动化测试】第二节.Requests库和接口对象封装

文章目录 前言一、Requests库 1.1 Requests介绍 1.2 Requests发送请求 1.3 Requests查看响应 1.4 案例1登录接口调试-获取验证码 1.5 案例2登录接口调试-登录 1.6 归纳小结二、接口对象封装 2.1 当前代码待优化问题 2.2 接口对象封装思…

仿饿了么加入购物车旋转控件 - 自带闪转腾挪动画 的按钮

, mWidth - mCircleWidth, mHeight - mCircleWidth); canvas.drawRoundRect(rectF, mHintBgRoundValue, mHintBgRoundValue, mHintPaint); //前景文字 mHintPaint.setColor(mHintFgColor); // 计算Baseline绘制的起点X轴坐标 int baseX (int) (mWidth / 2 - mHintPaint.m…

【面试实战】# 并发编程之线程池配置实战

1.先了解线程池的几个参数含义 corePoolSize (核心线程池大小): 作用: 指定了线程池维护的核心线程数量&#xff0c;即使这些线程处于空闲状态&#xff0c;它们也不会被回收。用途: 核心线程用于处理长期的任务&#xff0c;保持最低的线程数量&#xff0c;以减少线程的创建和…

springboot中,将某个函数的日志单独输出的方法

背景 项目中有个节点健康检查扫描功能&#xff0c;每10秒扫描一次节点。 如果节点挂掉&#xff0c;会输出健康检查失败的日志。 测试环境&#xff0c;虽然配置了多个节点&#xff0c;但并没有都启动&#xff0c;所以在扫描的时候&#xff0c;会不断的出现报错&#xff0c; 对于…

【low-ui-vue】实现原生可扩展动态表格组件

本文字数&#xff1a;3520字 预计阅读时间&#xff1a;20分钟 所谓动态列的表格&#xff0c;就是列数不固定。像广为使用的elementUI的table组件就是表头写死的&#xff0c;这种也叫列数固定的表格。 01 效果 当然&#xff0c;动态性增加了&#xff0c;当然要做出一定“牺牲”。…

【前端vue3】TypeScrip-Class类用法

类型声明 TypeScrip定义Class类 语法&#xff1a; // 定义一个名为 Person 的类 class Person {constructor () {// 构造函数&#xff1a;稍后定义}run () {// 方法&#xff1a;稍后定义} }在TypeScript是不允许直接在constructor 定义变量的 需要在constructor上面先声明 例…

csdn上传源码资源卖钱能买房买车吗?每天最高收入200-500?

csdn上传源码卖钱能买房买车吗,最高收入200-500&#xff1f; 作者收入日榜 不***孩 收益617.32元 程***妍 收益534.56元 s***n 收益323.71元 盈***客 收益315.05元 极***计 收益284.17元

2024-06-23 编译原理实验4——中间代码生成

文章目录 一、实验要求二、实验设计三、实验结果四、附完整代码 补录与分享本科实验&#xff0c;以示纪念。 一、实验要求 在词法分析、语法分析和语义分析程序的基础上&#xff0c;将C−−源代码翻译为中间代码。 要求将中间代码输出成线性结构&#xff08;三地址代码&#…

企业级Web项目中应该如何做单元测试、集成测试和功能测试?

先自我介绍下&#xff1a; 本人有过10年测试经验&#xff0c;也参与过公安部网络安全产品测试交付、华为4G 网络设备测试交付、腾讯QQ空间APP产品测试交付。 关于“企业级Web项目中应该如何做单元测试、集成测试和功能测试”这个问题&#xff0c;我想给大家唠唠&#xff0c;我…

38 - 换座位(高频 SQL 50 题基础版)

38 - 换座位 -- 方法一 select(casewhen id%21 and id(select max(id) from seat) then idwhen id%20 then id-1else id1end) as id, student fromseat order byid;-- 方法二selectif(id%20,id-1,if(id(select max(id) from Seat),id,id1)) as id,student fromSeat order by id…

陀螺仪LSM6DSV16X与AI集成(7)----FIFO数据读取与配置

陀螺仪LSM6DSV16X与AI集成.6--检测自由落体 概述视频教学样品申请源码下载主要内容生成STM32CUBEMX串口配置IIC配置CS和SA0设置串口重定向参考程序初始换管脚获取ID复位操作BDU设置设置量程设置FIFO水印设置速率使用流模式设置FIFO时间戳批处理速率使能时间戳FIFO状态寄存器演示…

Django数据驾驶舱

Django数据驾驶舱 1.项目介绍2.项目结构3.库表结构3.1 appcsdn的models3.2 appssq的models3.3 appweather的models3.4 appweibo的models 4.功能展示5.解决问题5.1 路由配置5.2 后端数据与前端echarts展示5.3 长图表丝滑滚动条 6.遗留问题7.资源分享 1.项目介绍 这里介绍本人最…

阿里云发送验证码流程

目录 1. 阿里云短信服务简介 2. 阿里云验证码发送流程 2.1 申请阿里云短信服务 2.2 短信模板及阿里云秘钥 1.开发者可以在自己的应用程序中集成短信发送功能。绑定发起测试的手机号&#xff0c;需要绑定的手机号才能成功发送验证码&#xff0c;其他的用户手机号发送的验…

如何在 Ubuntu 12.04 VPS 上安装和配置基本的 LDAP 服务器

前些天发现了一个巨牛的人工智能学习网站&#xff0c;通俗易懂&#xff0c;风趣幽默&#xff0c;忍不住分享一下给大家。点击跳转到网站。 简介 LDAP&#xff08;轻量级目录访问协议&#xff09;是一种通过文件和目录层次结构管理相关信息的协议&#xff0c;它可以从集中位置管…

【4003】基于springboot实现的线上阅读系统

作者主页&#xff1a;Java码库 主营内容&#xff1a;SpringBoot、Vue、SSM、HLMT、Jsp、PHP、Nodejs、Python、爬虫、数据可视化、小程序、安卓app等设计与开发。 收藏点赞不迷路 关注作者有好处 文末获取源码 技术选型 【后端】&#xff1a;Java 【框架】&#xff1a;spring…

ARM裸机:基础了解

ARM的几种版本号 ARM内核版本号 ARMv7 ARM SoC版本号 Cortex-A8 芯片型号 S5PV210 ARM型号的发展历程 m microcontroller微控制器 就是单片机 a application应用级处理器 就是手机、平板、电脑的CPU r realtime实时处理器 响应速度快,主要用在工业、航天等领域 soc 、cpu、…