#1. static关键字,修饰属性、方法还有代码块,表示类的成员。 package com.oop.demo7; public class Application { public static void main(String[] args) { Person p1 = new Person() ...
分类:
其他好文 时间:
2020-12-02 12:32:30
阅读次数:
4
一文带你了解ANR(测试人员) 一、首先,了解一下什么是ANR ANR,是“Application Not Responding”的缩写,即“应用程序无响应”。系统会向用户显示一个对话框,用户可以选择“等待”而让程序继续运行,也可以选择“强制关闭”。 在Android中,应用程序的响应是由Activ ...
分类:
其他好文 时间:
2020-12-02 12:28:15
阅读次数:
6
1、ANR 的定义 ANR(Application Not Responding),用户可以选择“等待”而让程序继续运行,也可以选择“强制关闭”。所以一个流畅的合理的应用程序中不能出现anr,而让用户每次都要处理这个对话框。因此,在程序里对响应性能的设计很重要,这样系统不会显示ANR给用户。默认情况 ...
分类:
其他好文 时间:
2020-12-02 12:17:19
阅读次数:
8
这篇文章记录了我的一些实践。官方文档是 https://docs.microsoft.com/en-us/azure/app-service/tutorial-auth-aad?pivots=platform-linux 案例场景 关键技术 配置前端应用对应的Azure AD application ...
java beans specification 9 customization When a user is composing an application in an application builder we want to allow them tocustomize the appea ...
分类:
编程语言 时间:
2020-11-30 15:28:01
阅读次数:
7
<?xml version="1.0" encoding="utf-8"?> <manifest xmlns:android="http://schemas.android.com/apk/res/android" package="com.example.login1"> <application ...
分类:
其他好文 时间:
2020-11-30 15:27:13
阅读次数:
5
1.多配置文件,其中application.properties中的spring.profiles.active能够灵活的切换使用环境 application.properties spring.mvc.view.prefix=/WEB-INF/jsp/ spring.mvc.view.suffix ...
分类:
编程语言 时间:
2020-11-26 15:24:02
阅读次数:
14
1.在application.properties中添加如下内容 server.port=8888 spring.mvc.servlet.path=/test 2.访问127.0.0.1:8888/test/hello ...
分类:
编程语言 时间:
2020-11-26 15:04:09
阅读次数:
8
<?xml version="1.0" encoding="utf-8"?> <manifest xmlns:android="http://schemas.android.com/apk/res/android" package="com.example.login1"> <application ...
分类:
其他好文 时间:
2020-11-26 15:01:33
阅读次数:
6
WSGI(Python Web Server Gateway Interface) 为 Web Server 和 Python Web Application 之间提供了标准的数据通道. 是 Python 界的 一个广泛的可用的 WEB API 规范, 使 web server 提供更加规范的 AP ...
分类:
编程语言 时间:
2020-11-23 12:07:14
阅读次数:
9