CSE 110留学生作业代写、代做PatronList作业、代写Java编程语言作业、代做Java实验设计作业
CSE 110: Principles of Programming Languages
Assignment 6
Overview
In this assignment you will write a program that will model a bank with multiple patrons who
each have multiple accounts. The user will be able to add and remove patrons, as well as have
the individual patrons manage their account and money. This will involve interactions between
multiple classes which you have defined. When working as a programmer, you are often not
writing code from scratch, but are instead adding to an existing project using classes written by
others. With this in mind, you will not only be defining two of your own classes, but will also be
using a class which will be provided to you.
Note: The requirements listed below are provided in a specific order. Due to the way methods
depend on other methods and classes depend on other classes, the requirements are provided in a
“bottom-up” approach so that everything is defined before you try and use it. You are welcome
to tackle the steps in any order, but you may have issues due to not having methods defined that
you need in order to write other ones. This bottom up approach is often how code is written.
However, the downside of this approach is that your main method will be the last thing you
write. Make sure you make use of your empty main method to test methods and classes you’ve
written before moving too much further ahead. The worst mistake to make would be to write all
of this out before trying to test it at all!
Requirements
Your program must do the following in order to receive full credit on this assignment.
1. Download the AccountType enum java file, which is attached to the assignment on
Blackboard. Add it to your project and ensure it compiles.
a. Sometimes an IDE, namely Eclipse, will have issues using files you did not
create. If you get several problems (or see a message asking you to “Select Ant
build” when you go to run it) create your own file (with the same name!) and
copy and paste the contents into it.
2. Download the BankAccount class and add it to your project as well.
a. You are not to make any sort of edits to either of these files!
3. Create a new class called BankPatron.
4. Give BankPatron the following private instance variables.
a. First Name
b. Last Name
c. Salary
d. Cash on Hand
e. Two BankAccount objects
i. It is up to you to determine the needed types for all of these.
1. Look at how BankAccount handles its variables relating to money.
You should use the same type it does.
5. Create a default constructor, and then a regular constructor which takes the following
parameters.
a. First Name
b. Last Name
c. Salary
d. Cash on Hand
i. Both constructors will initialize, but not create objects for, the two
accounts.
6. Write a get method that returns the full name of the patron.
a. Be sure to put a space between the first and last names.
7. Write a get for salary and one for cash on hand.
8. Write a void method that gives the patron a paycheck.
a. That is, calculate the amount one paycheck would be and add it to their cash on
hand.
b. Assume that the salary is yearly, they work all weeks of the year, and are paid
bi-weekly.
i. As in they are paid every two weeks.
9. Write a method that gets the specified BankAccount.
a. It takes an int parameter of 1 or 2 that represents the first or second of the two
accounts this patron has.
b. If the number is invalid or they do not have that account yet the method should
return null.
10. Write a boolean method to make a deposit which takes a double for the amount to deposit
and an account to put the money in.
a. The provided amount is only added to the account if the patron has at least that
much cash on hand.
i. That much is then taken from their cash on hand.
b. The method should return true if the money was successfully deposited, otherwise
it will return false.
11. Write a boolean method which has parameters for an amount and an account to withdraw
the money from.
a. The method should only return true if the money was successfully withdrawn.
i. Use BankAccount’s built in withdraw method.
b. The money is added to the patrons cash on hand.
12. Write a boolean method that adds an account to the patron.
a. It should have a parameter for rate and one for the account type.
b. This account becomes the patron’s first account if they don’t already have one, or
their second if they already have a single account.
c. If they already have two accounts the method returns false, otherwise it returns
true.
13. Write a boolean method to remove one of the two accounts from this patron.
a. Like getAccount, take an int to determine which account to remove.
b. Return true only if the account was removed.
i. If the account was already null, it would return false.
c. Note: This concludes the BankPatron class.
14. Create a new PatronList class which has five private patron instance variables.
15. Create a default constructor which sets all the patrons to null.
a. Do not create another constructor.
16. Create a boolean method which takes a BankPatron and adds them as a new patron.
a. They can only be added if there is a null instance patron.
i. Otherwise the line at the bank is full and this method returns false.
17. Overload the method from the previous step to accept a first and last name, a salary, and
cash on hand for a patron and create and add this new patron to the bank.
a. Optional: Fun Fact, this method can be only a single line long!
18. Write a method that returns the patron specified in the int parameter.
a. 0 represents the first patron, 1 represents Patron 2, and so on.
b. Returns null if the parameter is invalid or no patron exists in that slot.
19. Write a method that accepts a patron’s full name as a parameter and returns that patron.
a. Return null if the patron is not found.
20. Write a boolean method that removes the patron provided in the parameter from the bank.
21. Write a string method to build and return a string of the patron’s info which can be
printed later.
a. It should print their full name first.
b. It then prints their first account info.
i. This takes the form: (accountType) (accountNumber) Balance: (balance)
Interest Rate: (rate).
ii. See example outputs.
iii. This is assuming they have an account at all.
c. Then print their second account in the same format, if they have one.
i. If they don’t have any accounts only their name should be printed.
d. Note: This concludes the PatronList class.
22. In your main file, create a Scanner and a PatronList object that will be usable by all
methods in the class.
23. Create a main menu method that will print out the menu, accept input from the user,
validate that input, and return the user’s choice. The main menu choices are as follows.
a. List Patrons
b. Add New Patron
c. Remove Patron
d. Patron Specific Actions
e. Quit
24. Create a patron menu method that will work like the main menu, but prints out the menu
for actions for a specific patron when the user chooses option d in the main menu.
a. Add New Account
b. Close Account
c. Get Paid
d. Apply Interest to Accounts
e. Make Deposit
f. Make Withdraw
g. Return to Main Menu
25. Create a third menu method that prompts the user for which account type they want. This
will be used when adding new accounts to a patron.
a. Checking
b. Savings
c. CD
d. Money Market
e. IRA
26. Write a void method that handles actions for the patron specific menu.
a. This should take a patron object as a parameter and apply all actions to that
patron.
b. Call the method to print the patron specific menu and store the user input.
c. Create a loop that will run until the user chooses to return to the main menu.
i. As always don’t forget to reprint the menu and take a new input at the
bottom of the loop.
d. The actions to take in the loop are described in the following steps.
27. If the user chose to add a new account, determine what account type the user wants,
accept a double as the interest rate from the user and then use that information to add a
new account to the patron.
a. Print out a message depending on whether adding the account succeeded or failed.
28. If the user chose to remove an account, accept an int from the user representing which
account to remove and remove that from the patron object.
a. Again, print a success or failure message.
29. If the user chose to have the patron receive a paycheck, call the method you wrote to have
the patron get a paycheck.
30. If the user chose to apply the interest rate to the accounts, then calculate the amount of
interest for each of the Patron’s accounts and add it to the balance of that account.
a. For example, if the first account had $100 in it and had a 2% interest rate, it
would have $102 in it afterwards.
b. Note that the rates are different for the two accounts and each should only get its
own rate amount added to it.
c. As is probably obvious, the accounts must exist in order to have interest added to
them.
31. If the user chose to make a deposit, have the user specify which account to make a
deposit in, using an int value again, then accept the amount to deposit, and finally have
the patron make that deposit.
a. Print a success or failure message.
b. If the specified account does not exist, print an error message instead.
32. If the user chose to make a withdrawal, follow the same procedure as making a deposit,
but withdraw the money instead.
a. Again print the appropriate messages.
33. Finally, write your main method.
a. Print a welcome message.
b. Call your main menu method to show the menu and get the user’s choice.
c. Have a loop that will run until the user chooses to exit.
i. The steps to do in the loop are specified in the next steps.
d. Print a goodbye message after the loop before the program ends.
34. If the user chose to list the patrons, print out the information for each patron in the
PatronList.
a. If there are none, print None.
b. Use the method you defined in PatronList to get a string of each patron’s
information.
35. If the user chose to add a new patron, get the appropriate information and add the patron
to the bank.
a. You will need the first and last name of the patron, their salary, and how much
cash they have on hand.
b. Print a message welcoming them to the bank if they were successfully added to
the PatronList, otherwise print a message that the bank line is full already.
36. If the user chose to remove a patron, get the patron’s name and remove them from the
PatronList.
a. Take the patron’s full name from the user.
b. Use the method you defined in PatronList to get that patron.
c. If the patron doesn’t exist, print a message that there’s no one by that name.
37. If the user chose to do patron specific actions, get the patron’s name and pass that patron
to the patron specific method you created previously.
a. Again, get their full name and use the method you already wrote to get that
patron.
b. If the patron doesn’t exist, print an error instead of moving to the patron specific
menu.
38. Celebrate!
Example Inputs
Below are five example runs of the program with the inputs and outputs. Remember, the graders
will be testing your program against these as well as their own, so make sure you test these and
come up with your own before submitting your program.
#1
Welcome to the CSE 110 Bank!
a. List Patrons
b. Add New Patron
c. Remove Patron
d. Patron Specific Actions
e. Quit
a
Patrons currently at the bank:
None
a. List Patrons
b. Add New Patron
c. Remove Patron
d. Patron Specific Actions
e. Quit
b
What is the first name of the new patron?
Tyler
Their last name?
Baron
Their yearly salary?
100000 // I wish
How much cash do they have on hand?
100
Welcome to the bank, Tyler
a. List Patrons
b. Add New Patron
c. Remove Patron
d. Patron Specific Actions
e. Quit
a
Patrons currently at the bank:
Tyler Baron
a. List Patrons
b. Add New Patron
c. Remove Patron
d. Patron Specific Actions
e. Quit
e
Thank you for coming.
#2
Welcome to the CSE 110 Bank!
a. List Patrons
b. Add New Patron
c. Remove Patron
d. Patron Specific Actions
e. Quit
c
Type the full name of the patron you want.
Amber Bennett
There is no patron by that name.
a. List Patrons
b. Add New Patron
c. Remove Patron
d. Patron Specific Actions
e. Quit
b
What is the first name of the new patron?
Mohammed
Their last name?
Albasha
Their yearly salary?
50000
How much cash do they have on hand?
100
Welcome to the bank, Mohammed
a. List Patrons
b. Add New Patron
c. Remove Patron
d. Patron Specific Actions
e. Quit
c
Type the full name of the patron you want.
Mohammed Albasha
Mohammed Albasha left the bank.
a. List Patrons
b. Add New Patron
c. Remove Patron
d. Patron Specific Actions
e. Quit
a
Patrons currently at the bank:
None
a. List Patrons
b. Add New Patron
c. Remove Patron
d. Patron Specific Actions
e. Quit
e
Thank you for coming.
#3
Welcome to the CSE 110 Bank!
a. List Patrons
b. Add New Patron
c. Remove Patron
d. Patron Specific Actions
e. Quit
b
What is the first name of the new patron?
Ghaith
Their last name?
Salman
Their yearly salary?
30000
How much cash do they have on hand?
300
Welcome to the bank, Ghaith
a. List Patrons
b. Add New Patron
c. Remove Patron
d. Patron Specific Actions
e. Quit
a
Patrons currently at the bank:
Ghaith Salman
a. List Patrons
b. Add New Patron
c. Remove Patron
d. Patron Specific Actions
e. Quit
d
Type the full name of the patron you want.
Ghaith Salman
What do you want to do with Ghaith Salman
a. Add New Account
b. Close Account
c. Get Paid
d. Apply Interest to Accounts
e. Make Deposit
f. Make a Withdraw
g. Return to Main Menu
a
Which account type did you want?
a. Checking
b. Savings
c. CD
d. Money Market
e. IRA
a
Please input the interest rate.
2
Account successfully added!
What do you want to do with Ghaith Salman
a. Add New Account
b. Close Account
c. Get Paid
d. Apply Interest to Accounts
e. Make Deposit
f. Make a Withdraw
g. Return to Main Menu
e
Which account (1 or 2) did you want to make a deposit in?
1
How much did you want to deposit?
400
Patron does not have enough cash on hand!
What do you want to do with Ghaith Salman
a. Add New Account
b. Close Account
c. Get Paid
d. Apply Interest to Accounts
e. Make Deposit
f. Make a Withdraw
g. Return to Main Menu
e
Which account (1 or 2) did you want to make a deposit in?
1
How much did you want to deposit?
50
Deposit made.
What do you want to do with Ghaith Salman
a. Add New Account
b. Close Account
c. Get Paid
d. Apply Interest to Accounts
e. Make Deposit
f. Make a Withdraw
g. Return to Main Menu
g
a. List Patrons
b. Add New Patron
c. Remove Patron
d. Patron Specific Actions
e. Quit
a
Patrons currently at the bank:
Ghaith Salman Checking 1001 Balance: 50.0 Interest Rate: 2.0
a. List Patrons
b. Add New Patron
c. Remove Patron
d. Patron Specific Actions
e. Quit
e
Thank you for coming.
#4
Welcome to the CSE 110 Bank!
a. List Patrons
b. Add New Patron
c. Remove Patron
d. Patron Specific Actions
e. Quit
b
What is the first name of the new patron?
Yiting
Their last name?
Yao
Their yearly salary?
10000
How much cash do they have on hand?
0
Welcome to the bank, Yiting
a. List Patrons
b. Add New Patron
c. Remove Patron
d. Patron Specific Actions
e. Quit
b
What is the first name of the new patron?
Shokoufeh
Their last name?
Monjezi
Their yearly salary?
25000
How much cash do they have on hand?
20
Welcome to the bank, Shokoufeh
a. List Patrons
b. Add New Patron
c. Remove Patron
d. Patron Specific Actions
e. Quit
d
Type the full name of the patron you want.
Yiting Yao
What do you want to do with Yiting Yao
a. Add New Account
b. Close Account
c. Get Paid
d. Apply Interest to Accounts
e. Make Deposit
f. Make a Withdraw
g. Return to Main Menu
a
Which account type did you want?
a. Checking
b. Savings
c. CD
d. Money Market
e. IRA
c
Please input the interest rate.
7
Account successfully added!
What do you want to do with Yiting Yao
a. Add New Account
b. Close Account
c. Get Paid
d. Apply Interest to Accounts
e. Make Deposit
f. Make a Withdraw
g. Return to Main Menu
a
Which account type did you want?
a. Checking
b. Savings
c. CD
d. Money Market
e. IRA
e
Please input the interest rate.
15
Account successfully added!
What do you want to do with Yiting Yao
a. Add New Account
b. Close Account
c. Get Paid
d. Apply Interest to Accounts
e. Make Deposit
f. Make a Withdraw
g. Return to Main Menu
g
a. List Patrons
b. Add New Patron
c. Remove Patron
d. Patron Specific Actions
e. Quit
d
Type the full name of the patron you want.
Shokoufeh Monjezi
What do you want to do with Shokoufeh Monjezi
a. Add New Account
b. Close Account
c. Get Paid
d. Apply Interest to Accounts
e. Make Deposit
f. Make a Withdraw
g. Return to Main Menu
c
What do you want to do with Shokoufeh Monjezi
a. Add New Account
b. Close Account
c. Get Paid
d. Apply Interest to Accounts
e. Make Deposit
f. Make a Withdraw
g. Return to Main Menu
a
Which account type did you want?
a. Checking
b. Savings
c. CD
d. Money Market
e. IRA
d
Please input the interest rate.
3
Account successfully added!
What do you want to do with Shokoufeh Monjezi
a. Add New Account
b. Close Account
c. Get Paid
d. Apply Interest to Accounts
e. Make Deposit
f. Make a Withdraw
g. Return to Main Menu
e
Which account (1 or 2) did you want to make a deposit in?
1
How much did you want to deposit?
20
Deposit made.
What do you want to do with Shokoufeh Monjezi
a. Add New Account
b. Close Account
c. Get Paid
d. Apply Interest to Accounts
e. Make Deposit
f. Make a Withdraw
g. Return to Main Menu
d
What do you want to do with Shokoufeh Monjezi
a. Add New Account
b. Close Account
c. Get Paid
d. Apply Interest to Accounts
e. Make Deposit
f. Make a Withdraw
g. Return to Main Menu
g
a. List Patrons
b. Add New Patron
c. Remove Patron
d. Patron Specific Actions
e. Quit
a
Patrons currently at the bank:
Yiting Yao CD 1001 Balance: 0.0 Interest Rate: 7.0
IRA 1002 Balance: 0.0 Interest Rate: 15.0
Shokoufeh Monjezi MoneyMarket 1003 Balance: 20.6 Interest Rate: 3.0
a. List Patrons
b. Add New Patron
c. Remove Patron
d. Patron Specific Actions
e. Quit
e
Thank you for coming.
#5
Welcome to the CSE 110 Bank!
a. List Patrons
b. Add New Patron
c. Remove Patron
d. Patron Specific Actions
e. Quit
b
What is the first name of the new patron?
Ahmed
Their last name?
Moussa
Their yearly salary?
1231
How much cash do they have on hand?
3432
Welcome to the bank, Ahmed
a. List Patrons
b. Add New Patron
c. Remove Patron
d. Patron Specific Actions
e. Quit
b
What is the first name of the new patron?
Fatemeh
Their last name?
Haghighi
Their yearly salary?
1231
How much cash do they have on hand?
3432
Welcome to the bank, Fatemeh
a. List Patrons
b. Add New Patron
c. Remove Patron
d. Patron Specific Actions
e. Quit
b
What is the first name of the new patron?
Ghaith
Their last name?
Salman
Their yearly salary?
1231
How much cash do they have on hand?
3432
Welcome to the bank, Ghaith
a. List Patrons
b. Add New Patron
c. Remove Patron
d. Patron Specific Actions
e. Quit
b
What is the first name of the new patron?
Amber
Their last name?
Bennett
Their yearly salary?
60000
How much cash do they have on hand?
0
Welcome to the bank, Amber
a. List Patrons
b. Add New Patron
c. Remove Patron
d. Patron Specific Actions
e. Quit
b
What is the first name of the new patron?
Void
Their last name?
Noid
Their yearly salary?
0
How much cash do they have on hand?
0
Welcome to the bank, Void
a. List Patrons
b. Add New Patron
c. Remove Patron
d. Patron Specific Actions
e. Quit
b
What is the first name of the new patron?
Green
Their last name?
Cheese
Their yearly salary?
1
How much cash do they have on hand?
2
The line at the bank is full already!
a. List Patrons
b. Add New Patron
c. Remove Patron
d. Patron Specific Actions
e. Quit
a
Patrons currently at the bank:
Ahmed Moussa
Fatemeh Haghighi
Ghaith Salman
Amber Bennett
Void Noid
a. List Patrons
b. Add New Patron
c. Remove Patron
d. Patron Specific Actions
e. Quit
c
Type the full name of the patron you want.
Void Noid
Void Noid left the bank.
a. List Patrons
b. Add New Patron
c. Remove Patron
d. Patron Specific Actions
e. Quit
b
What is the first name of the new patron?
Green
Their last name?
Cheese
Their yearly salary?
1
How much cash do they have on hand?
2
Welcome to the bank, Green
a. List Patrons
b. Add New Patron
c. Remove Patron
d. Patron Specific Actions
e. Quit
a
Patrons currently at the bank:
Ahmed Moussa
Fatemeh Haghighi
Ghaith Salman
Amber Bennett
Green Cheese
a. List Patrons
b. Add New Patron
c. Remove Patron
d. Patron Specific Actions
e. Quit
d
Type the full name of the patron you want.
Green Cheese
What do you want to do with Green Cheese
a. Add New Account
b. Close Account
c. Get Paid
d. Apply Interest to Accounts
e. Make Deposit
f. Make a Withdraw
g. Return to Main Menu
a
Which account type did you want?
a. Checking
b. Savings
c. CD
d. Money Market
e. IRA
a
Please input the interest rate.
3
Account successfully added!
What do you want to do with Green Cheese
a. Add New Account
b. Close Account
c. Get Paid
d. Apply Interest to Accounts
e. Make Deposit
f. Make a Withdraw
g. Return to Main Menu
a
Which account type did you want?
a. Checking
b. Savings
c. CD
d. Money Market
e. IRA
c
Please input the interest rate.
15
Account successfully added!
What do you want to do with Green Cheese
a. Add New Account
b. Close Account
c. Get Paid
d. Apply Interest to Accounts
e. Make Deposit
f. Make a Withdraw
g. Return to Main Menu
a
Which account type did you want?
a. Checking
b. Savings
c. CD
d. Money Market
e. IRA
r
Invalid Input
e
Please input the interest rate.
20
Account could not be added!
What do you want to do with Green Cheese
a. Add New Account
b. Close Account
c. Get Paid
d. Apply Interest to Accounts
e. Make Deposit
f. Make a Withdraw
g. Return to Main Menu
g
a. List Patrons
b. Add New Patron
c. Remove Patron
d. Patron Specific Actions
e. Quit
a
Patrons currently at the bank:
Ahmed Moussa
Fatemeh Haghighi
Ghaith Salman
Amber Bennett
Green Cheese Checking 1001 Balance: 0.0 Interest Rate: 3.0
CD 1002 Balance: 0.0 Interest Rate: 15.0
a. List Patrons
b. Add New Patron
c. Remove Patron
d. Patron Specific Actions
e. Quit
e
Thank you for coming.
Submission
Please submit your Assignment6.java, BankPatron.java, and PatronList.java files to the
Assignment 6 link on Blackboard under the Assignments tab. You may submit as many times as
you want prior to the due date, in case you later find and fix an error, but only the last one is
graded.

http://www.6daixie.com/contents/9/2020.html

因为专业,所以值得信赖。如有需要,请加QQ:99515681 或邮箱:99515681@qq.com

微信:codinghelp

转载于:https://www.cnblogs.com/java222/p/9845540.html

CSE 110: Principles of Programming Languages相关推荐

  1. 华盛顿大学公开课Programming Languages by Dan Grossman 简介

    Programming Languages  by Dan Grossman 这门课依然是Coursera平台上的,是第二次开设.现在我已经习惯了Coursera,其他的平台感觉都没有这个好,特别是论 ...

  2. Programming Languages PartA Week2学习笔记——SML基本语法

    Programming Languages PartA Week2学习笔记--SML基本语法 首先简单介绍使用的SML语言,参考维基百科和百度百科: ML(Meta Language:元语言)是由爱丁 ...

  3. Coursera课程 Programming Languages, Part C 总结

    碎言碎语 和前面的 ML 和 Racket 感觉明显不一样了,一边学着一边觉得这真是一门奇怪的语言,有着各种奇怪的语法,不过真的算是一个奇妙的体验(相比前面的两门语言,Ruby 的学习资源多了不少). ...

  4. 概率编程语言(Probabilistic Programming Languages)库 —— edward

    注意:tensorflow api 在 1.1.0 以后迎来重大变化,edward 的稳定版依赖于 tensorflow 1.1.0. edward是一个支持概率建模.推断的 Python 第三方库, ...

  5. Programming Languages PartA Week3学习笔记——SML基本语法第二部分

    文章目录 Building Compound Types Records Tuples as Syntactic Sugar Datatype Bindings Case Expressions Us ...

  6. Programming Languages PartA Week5学习笔记——SML进阶与编程哲学

    文章目录 Week5 Introduction What is Type Inference ML Type Inference Type Inference Examples Polymorphic ...

  7. [转]CS的顶级会议和期刊

    原文地址:   http://blog.csdn.net/noter/archive/2009/08/05/4414168.aspx CS的顶级会议和期刊 SCI或SCIE收录的本学科刊物清单请登陆 ...

  8. 计算机领域的顶级会议和期刊

    SCI或SCIE收录的本学科刊物清单请登陆 http://www.isinet.com/cgi-bin/jrnlst/jloptions.cgi?PC=K 和http://www.isinet.com ...

  9. 计算机方面的顶级会议

    原文地址:http://blog.csdn.net/ustcxjt/article/details/7075534 方便自己查看 CORE Computer Science Conference Ra ...

最新文章

  1. Java线上程序频繁JVM FGC问题排障与启示
  2. [洛谷P1268]树的重量
  3. 学python心得体会500字-英泰移动通信:学习Python心得体会
  4. spaCy教程(翻译自官网)
  5. 云服务器搭建代挂,服务器上搭建个人博客
  6. stdout和stderr标准输出的区别
  7. Swift语言快速入门
  8. linux系统说明文件目录,Linux系统目录结构说明
  9. 面试系列三 如何保证消息不被重复消费
  10. Vue.js 目录结构
  11. 一文说通异步 LINQ
  12. 大地最新win11 32位专业版镜像v2021.07
  13. Spring Cloud Alibaba —— Sentinel 入门
  14. 深入理解Java Proxy机制
  15. 阿里云播放器SDK 不断读取播放事件【内部用】
  16. Chrome扩展之书签
  17. 画出清明上河图的代码_【高清】清明上河图(代码)
  18. java openxml word_OpenXml读取word内容的实例
  19. c语言学习周报(2020.11.21-11.28)
  20. 创业公司项目管理流程这样做才有效

热门文章

  1. 线程安全的量化时间帧环形缓冲区
  2. .NET Core 3.0中的Cookie身份验证
  3. Win10 应用程序新的图标流出,微软正在为其改头换面
  4. 和 jQuery 说再见,Bootstrap 5 将移除对其依赖
  5. odoo10参考系列--ORM API 二(新旧API兼容性、模型参考和方法修饰符)
  6. python中列表、元组、字符串都属于有序序列_列表、元组、字符串是Python的有序序列。...
  7. python实现屏幕录制_JavaScript 屏幕录制 API 学习
  8. 注解参数获取不到_scm-springboot基于spring boot的统一注解缓存
  9. git撤销单个文件的修改_大牛总结的 Git 使用技巧,写得太好了
  10. mysql创建虚拟网卡_创建启动虚拟网卡