摘要: 1.三个界面,界面1点击按钮使用显式意图开启界面2.界面2点击按钮隐式意图开启界面3 在界面1做一个按钮开启浏览器访问百度 package com.example.zuoye; import androidx.appcompat.app.AppCompatActivity; import andro 阅读全文
posted @ 2021-10-06 22:50 于国庆 阅读(22) 评论(0) 推荐(0) 编辑
摘要: package com.example.zuoye; import androidx.appcompat.app.AppCompatActivity; import android.app.AlertDialog; import android.content.DialogInterface; im 阅读全文
posted @ 2021-09-25 00:42 于国庆 阅读(28) 评论(0) 推荐(0) 编辑
摘要: <?xml version="1.0" encoding="utf-8"?> <LinearLayout xmlns:android="http://schemas.android.com/apk/res/android" android:layout_width="300dp" android:l 阅读全文
posted @ 2021-08-23 10:52 于国庆 阅读(11) 评论(0) 推荐(0) 编辑
摘要: 阅读全文
posted @ 2021-08-17 13:10 于国庆 阅读(30) 评论(0) 推荐(0) 编辑
摘要: Cola公司的雇员分为以下若干类:(知识点:多态) [必做题]• 4.1 ColaEmployee :这是所有员工总的父类,属性:员工的姓名,员工的生日月份。方法:getSalary(int month) 根据参数月份来确定工资,如果该月员工过生日,则公司会额外奖励100 元。• 4.2 Salar 阅读全文
posted @ 2021-06-18 18:00 于国庆 阅读(29) 评论(0) 推荐(0) 编辑
摘要: 2、设计2个类,要求如下:(知识点:类的继承 方法的覆盖) [必做题]2.1 定义一个汽车类Vehicle,2.1.1 属性包括:汽车品牌brand(String类型)、颜色color(String类型)和速度speed(double类型)。2.1.2 至少提供一个有参的构造方法(要求品牌和颜色可以 阅读全文
posted @ 2021-06-12 15:06 于国庆 阅读(33) 评论(0) 推荐(0) 编辑
摘要: 1、定义一个点类Point, 包含2个成员变量x、y分别表示x和y坐标,2个构造器Point()和Point( intx0,y0),以及一个movePoint (int dx,intdy)方法实现点的位置移动,创建两个Point对象p1、p2, 分别调用movePoint方法后,打印pl和p2的坐标 阅读全文
posted @ 2021-05-23 22:29 于国庆 阅读(33) 评论(0) 推荐(0) 编辑
摘要: 1.编写一个方法,实现冒泡排序(由小到大),并调用该方法 package home; public class ZUOYE { public static void maopao(int a[]) { for (int i = 0; i < a.length - 1; i++) { for (int 阅读全文
posted @ 2021-05-07 23:24 于国庆 阅读(42) 评论(0) 推荐(0) 编辑
摘要: 1编写一个简单程序,要求数组长度为5,静态赋值10,20,30,40,50,在控制台输出该数组的值。 package home; public class jiatingzuoye { /** * @param args */ public static void main(String[] arg 阅读全文
posted @ 2021-04-27 21:01 于国庆 阅读(43) 评论(0) 推荐(0) 编辑
摘要: 1.编写一个简单程序,要求数组长度为5,静态赋值10,20,30,40,50,在控制台输出该数组的值。 package home; public class zuoye { /** * @param args */ public static void main(String[] args) { i 阅读全文
posted @ 2021-04-19 09:01 于国庆 阅读(47) 评论(0) 推荐(0) 编辑