八爪鱼拉拉手

欢迎来到程序小院

八爪鱼拉拉手

玩法:点击鼠标左键拖动移动八爪鱼,当他的手很忙的时候他会很高兴,
不同关卡不同的八爪鱼的位置摆放,快去闯关吧^^。

开始游戏icon-default.png?t=N7T8https://www.ormcc.com/play/gameStart/248

html

<div id="gameContainer"></div>
<div id="orientation"></div>

css

#orientation {margin: 0 auto;position: absolute;top: 0;left: 0;width: 100%;height: 100%;background-image: url(../assets/graphics/rotate-phone.png);background-repeat: no-repeat;background-position: center;background-color: #fff;z-index: 999;display: none;
}@font-face {font-family: 'GrilledCheeseBTNToasted';font-style: normal;font-weight: normal;src: local('GrilledCheeseBTNToasted'), url('../assets/fonts/GrilledCheeseBTNToasted.woff') format('woff');
}

js

function onLoad() {new game.Main
}
var game; !
function(t) {var e = function() {function t() {}return t.GAME_WIDTH = 640,t.GAME_HEIGHT = 832,t.HALF_GAME_WIDTH = .5 * t.GAME_WIDTH,t.HALF_GAME_HEIGHT = .5 * t.GAME_HEIGHT,t.LEVELS_NUM = 60,t} ();t.Config = e
} (game || (game = {}));
var __extends = this.__extends ||
function(t, e) {function i() {this.constructor = t}for (var a in e) e.hasOwnProperty(a) && (t[a] = e[a]);i.prototype = e.prototype,t.prototype = new i
},
game; !
function(t) {var e = function(e) {function i() {e.apply(this, arguments)}return __extends(i, e),i.prototype.init = function() {this.game.device.android && !this.game.device.chrome && (this.game.canvas.parentElement.style.overflow = "visible");var t = {font: "10px GrilledCheeseBTNToasted"},e = this.add.text(0, 0, "0", t);e.destroy()},i.prototype.preload = function() {this.load.image("rotate", "assets/graphics/rotate-phone.png"),this.load.image("LoadingBar_Outer", "assets/graphics/LoadingBar_Outer.png"),this.load.image("LoadingBar_Inner", "assets/graphics/LoadingBar_Inner.png")},i.prototype.create = function() {var e = this.game.scale;e.scaleMode = Phaser.ScaleManager.SHOW_ALL,e.minWidth = .25 * t.Config.GAME_WIDTH,e.minHeight = .25 * t.Config.GAME_HEIGHT,e.aspectRatio = t.Config.GAME_WIDTH / t.Config.GAME_HEIGHT,e.pageAlignHorizontally = !0,e.pageAlignVertically = !0,this.game.device.desktop || e.forceOrientation(!1, !0),e.enterIncorrectOrientation.add(this.onEnterIncorrectOrientation, this),e.leaveIncorrectOrientation.add(this.onLeaveIncorrectOrientation, this),e.setScreenSize(!0),this.input.maxPointers = 1,this.stage.disableVisibilityChange = !0,this.stage.backgroundColor = 8179412,this.game.state.start("Preloader", !0, !1)},i.prototype.onEnterIncorrectOrientation = function() {document.getElementById("orientation").style.display = "block",document.body.style.marginBottom = "0px"},i.prototype.onLeaveIncorrectOrientation = function() {document.getElementById("orientation").style.display = "none",document.body.style.marginBottom = "100px",this.game.device.android && !this.game.device.chrome && this.game.scale.setScreenSize(!0)},i} (Phaser.State);t.Boot = e
} (game || (game = {}));
var game; !
function(t) {var e = function(t) {function e() {t.apply(this, arguments)}return __extends(e, t),e.prototype.create = function() {},e.prototype.addSplash = function() {},e.prototype.gotoMainMenu = function() {this.game.state.start("MainMenu", !0, !1, !0)},e} (Phaser.State);t.SplashScreen = e
} (game || (game = {}));
var game; !
function(t) {var e = function(e) {function i(i, a) {e.call(this, i, a),this.overlayDuration = 300;var n = i.add.bitmapData(t.Config.GAME_WIDTH, t.Config.GAME_HEIGHT, "overlay", !0);n.context.fillStyle = "rgba(0, 0, 0, 1)",n.context.fillRect(0, 0, t.Config.GAME_WIDTH, t.Config.GAME_HEIGHT),this.overlay = new Phaser.Image(i, 0, 0, n),this.overlay.visible = !1,this.game.stage.addChild(this.overlay)}return __extends(i, e),i.prototype.changeState = function(t, e) {this.showOverlay(t, e)},i.prototype.showOverlay = function(t, e) {var i = this;this.game.input.disabled = !0,this.overlayTween && this.overlayTween.isRunning && this.overlayTween.stop(),this.overlay.visible = !0,this.overlay.alpha = 0,this.overlayTween = this.game.add.tween(this.overlay).to({alpha: 1},this.overlayDuration, Phaser.Easing.Cubic.Out, !0),this.overlayTween.onComplete.addOnce(function() {i.doChangeState(t, e)},this)},i.prototype.doChangeState = function(t, e) {var i = this;this.game.state.start(t, !0, !1, e),setTimeout(function() {i.hideOverlay()},100),setTimeout(function() {i.overlay.visible && (i.overlay.visible = !1)},100 + this.overlayDuration)},i.prototype.hideOverlay = function() {this.game.input.disabled = !1,this.overlayTween && this.overlayTween.isRunning && this.overlayTween.stop(),this.overlayTween = this.game.add.tween(this.overlay).to({alpha: 0},this.overlayDuration, Phaser.Easing.Cubic.Out, !0)},i} (Phaser.Plugin);t.StateTransition = e
} (game || (game = {}));
var game; !
function(t) {var e = function(e) {function i() {e.apply(this, arguments)}return __extends(i, e),i.prototype.init = function() {this.addLoadingText()},i.prototype.addLoadingText = function() {var e = {font: "45px GrilledCheeseBTNToasted",fill: "#FFFFFF",align: "center"},i = this.game.add.text(0, 0, "Loading...", e);i.anchor.set(.5, .5),i.position.set(t.Config.HALF_GAME_WIDTH, t.Config.HALF_GAME_HEIGHT + 100),i.setShadow(2, 2, "#249BC8")},i.prototype.preload = function() {this.addPreloadBar(),this.loadAssets()},i.prototype.addPreloadBar = function() {if (t.Main.development === !1) {var e = this.game.add.sprite(0, 0, "LoadingBar_Inner");e.x = t.Config.HALF_GAME_WIDTH - .5 * e.width - .5,e.y = t.Config.HALF_GAME_HEIGHT - .5 * e.height - 1.5;var i = this.add.image(0, 0, "LoadingBar_Outer");i.anchor.set(.5, .5),i.x = t.Config.HALF_GAME_WIDTH - .5,i.y = t.Config.HALF_GAME_HEIGHT,this.load.setPreloadSprite(e)}},i.prototype.loadAssets = function() {this.load.audio("main_loop", ["assets/audio/MainLoop.ogg", "assets/audio/MainLoop.m4a"], !0),this.game.device.webAudio && (this.load.audio("tap", ["assets/audio/TapSound.wav"], !0), this.load.audio("onLevelComplete", ["assets/audio/LevelCompleteSound.wav"], !0), this.load.audio("on_down", ["assets/audio/OnDown.wav"], !0), this.load.audio("on_up", ["assets/audio/OnUp.wav"], !0), this.load.audio("star", ["assets/audio/Star.wav"], !0), this.load.audio("star_taken", ["assets/audio/StarTaken.wav"], !0)),// this.load.image("splash_screen", "assets/graphics/Splash_Image_play68.png"),this.load.atlasJSONHash("gui", "assets/graphics/gui.png", "assets/graphics/gui.json"),this.load.atlasJSONHash("level_graphics", "assets/graphics/level_graphics.png", "assets/graphics/level_graphics.json"),this.load.atlasJSONHash("manta_ray", "assets/graphics/manta_ray.png","assets/graphics/manta_ray.json"),this.load.atlasJSONHash("level_complete", "assets/graphics/level_complete.png", "assets/graphics/level_complete.json"),this.load.atlasJSONHash("tutor_hand", "assets/graphics/tutorial_hand.png", "assets/graphics/tutorial_hand.json"),this.load.atlasJSONHash("tutorial", "assets/graphics/tutorial.png", "assets/graphics/tutorial.json"),this.load.atlasJSONHash("yellow_fish", "assets/graphics/yellow_fish.png","assets/graphics/yellow_fish.json"),this.load.atlasJSONHash("pink_fish", "assets/graphics/pink_fish.png","assets/graphics/pink_fish.json"),this.load.json("texts", "assets/texts.json"),t.Main.development ? this.load.json("startLevel", "assets/levels/StartLevel.json") : this.load.json("levelConfigs", "assets/levels/Levels.json")},i.prototype.create = function() {this.initLanguage(),this.prepareTextures(),this.game.plugins.add(t.StateTransition),this.game.cache.removeImage("LoadingBar_Outer"),this.game.cache.removeImage("LoadingBar_Inner"),t.Main.development && this.cache.getJSON("startLevel").level,this.game.state.start("MainMenu", !0, !1, !0)},i.prototype.initLanguage = function() {var e = this.game.cache.getJSON("texts");t.Main.texts = e[t.Main.language]},i.prototype.prepareTextures = function() {},i} (Phaser.State);t.Preloader = e
} (game || (game = {}));
var game; !
function(t) {var e = function(t) {function e(e, i, a, n, s) {var o = this;t.call(this, e, i, a, n, s),this._callback = new Phaser.Signal,this.anchor.set(.5, .5),this.inputEnabled = !0,this.game.device.desktop && (this.input.useHandCursor = !0),this.inputEnabled && (this.events.onInputDown.add(function() {o.game.device.webAudio && o.game.sound.play("tap"),o.game.add.tween(o.scale).to({x: .9,y: .9},200, Phaser.Easing.Cubic.Out, !0)}), this.events.onInputUp.add(function() {o.game.add.tween(o.scale).to({x: 1,y: 1},100, Phaser.Easing.Cubic.Out, !0).onComplete.addOnce(o._callback.dispatch, o)}))}return __extends(e, t),e.prototype.destroy = function() {t.prototype.destroy.call(this),this._callback.dispose()},Object.defineProperty(e.prototype, "callback", {get: function() {return this._callback},enumerable: !0,configurable: !0}),e} (Phaser.Image);t.SimpleButton = e
} (game || (game = {}));
var game; !
function(t) {var e = function(t) {function e(e, i, a, n, s) {t.call(this, e, i, a, "gui", n),this.textureKey1 = n,this.textureKey2 = s,this.activeTextureKey = this.textureKey1,this._state = 1,this.events.onInputUp.add(this.switchTextures, this, 2)}return __extends(e, t),e.prototype.switchTextures = function() {this.activeTextureKey = this.activeTextureKey === this.textureKey1 ? this.textureKey2: this.textureKey1,this.loadTexture("gui", this.activeTextureKey),this._state = this.activeTextureKey === this.textureKey1 ? 1 : 2},Object.defineProperty(e.prototype, "state", {get: function() {return this._state},enumerable: !0,configurable: !0}),e} (game.SimpleButton);t.ToggleButton = e
} (game || (game = {}));
var game; !
function(t) {var e = function(e) {function i() {e.apply(this, arguments),this.fromPreloader = !1}return __extends(i, e),i.prototype.init = function(t) {this.fromPreloader = t},i.prototype.create = function() {this.initImages(),this.addCreatures(),this.initButtons(),this.initLogo(),this.initCredits(),this.initAnimation(),this.fromPreloader && (this.soundButton.input.enabled = !1, this.soundButton.switchTextures(), this.game.input.onTap.addOnce(this.startMusic, this), this.stage.disableVisibilityChange = !1, this.game.onBlur.add(this.onFocusLost, this), this.game.onFocus.add(this.onFocus, this))},i.prototype.onFocusLost = function() {this.game.tweens.pauseAll(),t.Main.wasMuted = this.game.sound.mute,this.game.sound.mute = !0},i.prototype.onFocus = function() {this.game.tweens.resumeAll(),t.Main.wasMuted === !1 && (this.game.sound.mute = !1)},i.prototype.initImages = function() {this.game.add.image( - 32, 0, "gui", "BG_20000"),this.title = this.add.image(0, 0, "gui", "GameTitle0000"),this.title.anchor.set(.5, .5),this.title.x = t.Config.HALF_GAME_WIDTH - .5,this.title.y = 150},i.prototype.addCreatures = function() {this.needlefish = this.game.add.image(t.Config.HALF_GAME_WIDTH + 15, 550,"gui", "Needlefish0000"),this.needlefish.angle = 120,this.octopus = this.game.add.image(t.Config.HALF_GAME_WIDTH + 190, 760, "gui", "Octopus0000"),this.jelly = this.game.add.image(t.Config.HALF_GAME_WIDTH - 145, 740, "gui", "Jelly0000"),[this.needlefish, this.octopus, this.jelly].forEach(function(t) {t.anchor.set(.5, .5)})},i.prototype.initButtons = function() {var e = this,i = 60;this.soundButton = new t.ToggleButton(this.game, t.Config.GAME_WIDTH - i, i,"Music_On_Button0000", "Music_Off_Button0000"),this.soundButton.callback.add(function() {e.game.sound.mute = !e.game.sound.mute}),this.game.sound.mute && this.soundButton.switchTextures(),this.playButton = new t.SimpleButton(this.game, t.Config.HALF_GAME_WIDTH, 330, "gui", "Play_Button0000"),this.playButton.callback.addOnce(function() {e.game.changeState("LevelsMenu")},this),this.creditsButton = new t.SimpleButton(this.game, this.playButton.x + 130, this.playButton.y, "gui", "Credits_Button0000"),this.creditsButton.callback.add(this.toggleCredits, this),this.moreGamesButton = new t.SimpleButton(this.game, this.playButton.x - 130, this.playButton.y, "gui", "MoreGames_Button0000"),this.moreGamesButton.callback.add(this.gotoDeveloperWebsite, this),this.buttons = [this.playButton, this.soundButton, this.moreGamesButton, this.creditsButton],this.buttons.forEach(function(t) {e.world.add(t)})},i.prototype.gotoDeveloperWebsite = function() {// Play68.goHome()},i.prototype.initLogo = function() {},i.prototype.initCredits = function() {this.credits = this.game.add.image(0, 0, "gui", "CreditsBoard0000"),this.credits.position.set(Math.round(.5 * (t.Config.GAME_WIDTH - this.credits.width)), Math.round(.5 * (t.Config.GAME_HEIGHT - this.credits.height))),this.credits.visible = !1},i.prototype.toggleCredits = function() {this.credits.visible ? this.hideCredits() : this.showCredits()},i.prototype.hideCredits = function() {var t = this;this.game.add.tween(this.credits).to({y: this.credits.y + 200,alpha: 0},500, Phaser.Easing.Back.In, !0).onComplete.addOnce(function() {t.playButton.input.enabled = !0,t.creditsButton.input.enabled = !0,t.credits.visible = !1},this)},i.prototype.showCredits = function() {var e = this;this.credits.visible = !0,this.credits.alpha = 0,this.credits.y = Math.round(.5 * (t.Config.GAME_HEIGHT - this.credits.height)) + 200,this.game.add.tween(this.credits).to({y: this.credits.y - 200,alpha: 1},500, Phaser.Easing.Back.Out, !0),this.playButton.input.enabled = !1,this.creditsButton.input.enabled = !1,this.game.input.onTap.addOnce(function() {e.hideCredits()},this)},i.prototype.startMusic = function() {this.game.sound.play("main_loop", .33, !1),this.soundButton.switchTextures(),this.soundButton.input.enabled = !0},i.prototype.initAnimation = function() {var t = this;this.title.y -= 280,this.game.add.tween(this.title).to({y: this.title.y + 280},600, Phaser.Easing.Back.Out, !0, 300);var e = 800;this.needlefish.y += 500,this.octopus.x += 400,this.jelly.x -= 400,this.game.add.tween(this.needlefish).to({y: this.needlefish.y - 500,angle: 354},700, Phaser.Easing.Back.Out, !0, e),this.game.add.tween(this.octopus).to({x: this.octopus.x - 400},600, Phaser.Easing.Back.Out, !0, e + 300),this.game.add.tween(this.jelly).to({x: this.jelly.x + 400},600, Phaser.Easing.Back.Out, !0, e + 300);var i = 1600;this.buttons.forEach(function(e) {e.scale.set(0, 0),t.game.add.tween(e.scale).to({x: 1,y: 1},300, Phaser.Easing.Back.Out, !0, i),i += 200})},i.prototype.destroy = function() {this.buttons = null},i} (Phaser.State);t.MainMenu = e
} (game || (game = {}));

源码

需要源码请关注添加好友哦^ ^

转载:欢迎来到本站,转载请注明文章出处https://ormcc.com/

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

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

相关文章

计算机毕业设计 基于Java的美食信息推荐系统的设计与实现 Java实战项目 附源码+文档+视频讲解

博主介绍&#xff1a;✌从事软件开发10年之余&#xff0c;专注于Java技术领域、Python人工智能及数据挖掘、小程序项目开发和Android项目开发等。CSDN、掘金、华为云、InfoQ、阿里云等平台优质作者✌ &#x1f345;文末获取源码联系&#x1f345; &#x1f447;&#x1f3fb; 精…

K8S的存储卷---数据卷

容器内的目录和宿主机的目录进行挂载 容器在系统上的生命周期是短暂的。delete&#xff0c;K8S用控制器创建的pod&#xff0c;delete相当于重启&#xff0c;容器的状态也会恢复到初始状态。一旦回到初始状态&#xff0c;所有的后天编辑的文件都会消失 容器和节点之间创建一个…

golang实现rpc方法二:使用jsonrpc库【跨平台】

首先在golang实现rpc方法一net/rpc库中实现了RPC方法&#xff0c;但是那个方法不是跨平台的&#xff0c;没法在其他语言中调用这个实现的RPC方法&#xff0c;接下来我们可以通过jsonroc库实现跨语言的RPC方法。俩种实现方式的代码其实也是差不多的&#xff0c;大差不差&#xf…

手机直连卫星及NTN简介

一、手机直连卫星的发展现状 近日&#xff0c;华为推出了支持北斗卫星短报文的Mate 50旗舰机、P60系列&#xff0c;苹果也跟Globalstar&#xff08;全球星&#xff09;合作推出了支持卫星求救的iPhone14&#xff0c;最亮眼的还是华为的。这几款产品揭开了卫星通信探索消费领域…

Retrieval-Augmented Generation for Large Language Models: A Survey

PS: 梳理该 Survey 的整体框架&#xff0c;后续补充相关参考文献的解析整理。本文的会从两个角度来分析总结&#xff0c;因此对于同一种技术可能在不同章节下都会有提及。第一个角度是从整体框架的迭代来看&#xff08;对应RAG框架章节&#xff09;&#xff0c;第二个是从RAG中…

前端背景收集之烟花背景

文章目录 &#x1f412;个人主页&#x1f3c5;Vue项目常用组件模板仓库&#x1f4d6;前言&#xff1a;&#x1f380;源码如下&#xff1a; &#x1f412;个人主页 &#x1f3c5;Vue项目常用组件模板仓库 &#x1f4d6;前言&#xff1a; 本篇博客主要提供前端背景收集之烟花背景…

强化学习应用(八):基于Q-learning的无人机物流路径规划研究(提供Python代码)

一、Q-learning简介 Q-learning是一种强化学习算法&#xff0c;用于解决基于马尔可夫决策过程&#xff08;MDP&#xff09;的问题。它通过学习一个价值函数来指导智能体在环境中做出决策&#xff0c;以最大化累积奖励。 Q-learning算法的核心思想是通过不断更新一个称为Q值的…

完美解决报错Please verify that the package.json has a valid “main“ entry处理方法

出现下图中的错误 &#xff0c;说明缺少main入口 解决方法&#xff1a; 1.删除 node_modules 和 package-lock.json这两个文件 2.命令行输入npm i 会重新下载包 3.重新执行检查没有报错

【LLM 论文阅读】NEFTU N E: LLM微调的免费午餐

指令微调的局限性 指令微调对于训练llm的能力至关重要&#xff0c;而模型的有用性在很大程度上取决于我们从小指令数据集中获得最大信息的能力。在本文中&#xff0c;我们提出在微调正向传递的过程中&#xff0c;在训练数据的嵌入向量中添加随机噪声&#xff0c;论文实验显示这…

静态路由、代理ARP

目录 静态路由静态路由指明下一跳和指明端口的区别代理ARP 我们知道&#xff0c;跨网络通信需要路由 路由有三种类型&#xff1a; 1.直连路由。 自动产生的路由&#xff0c;当网络设备连接到同一网络时&#xff0c;他们可以自动学习到对方的存在。自动学习相邻网络设备的直连信…

使用Excel批量给数据添加单引号和逗号

表格制作过程如下&#xff1a; A2表格暂时为空&#xff0c;模板建立完成以后&#xff0c;用来放置原始数据&#xff1b; 在B2表格内输入公式&#xff1a; ""&A2&""&"," 敲击回车&#xff1b; 解释&#xff1a; B2表格的公式&q…

科大讯飞星火大模型接入API js 部分 接口 安装注意事项

下载以下链接例子运行程序 https://xfyun-doc.xfyun.cn/static%2F16968175055332330%2Fspark_js_demo.zip 官网给的说明 准备 1.在demo中填写APPID、APISecret、APIKey&#xff0c;可到控制台-我的应用-大模型页面获取 2.安装nodejs 本地运行 1.打开cmd&#xff0c;进入dem…

微软等开源评估ChatGPT、Phi、Llma等,统一测试平台

微软亚洲研究院、中国科学院自动化研究所、中国科学技术大学和卡内基梅隆大学联合开源了&#xff0c;用于评估、分析大语言模型的统一测试平台——PromptBench。 Prompt Bench支持目前主流的开源、闭源大语言模型&#xff0c;例如&#xff0c;ChatGPT、GPT-4、Phi、Llma1/2、G…

【深度学习目标检测】十五、基于深度学习的口罩检测系统-含GUI和源码(python,yolov8)

YOLOv8是一种物体检测算法&#xff0c;是YOLO系列算法的最新版本。 YOLO&#xff08;You Only Look Once&#xff09;是一种实时物体检测算法&#xff0c;其优势在于快速且准确的检测结果。YOLOv8在之前的版本基础上进行了一系列改进和优化&#xff0c;提高了检测速度和准确性。…

大语言模型向量数据库

大语言模型&向量数据库 LARGE LANGUAGE MODELSA. Vector Database & LLM WorkflowB. Vector Database for LLMC. Potential Applications for Vector Database on LLMD. Potential Applications for LLM on Vector DatabaseE. Retrieval-Based LLMF. Synergized Exampl…

使用Notepad++将多行数据合并成一行

步骤 1、按CtrlF&#xff0c;弹出“替换”的窗口&#xff1b; 2、选择“替换”菜单&#xff1b; 3、“查找目标”内容输入为&#xff1a;\r\n&#xff1b; 4、“替换为”内容为空&#xff1b; 5、“查找模式”选择为正则表达式&#xff1b; 6、设置好之后&#xff0c;点击“全…

BUG-<el-option>多选框不能多选,前端Element

文章目录 来源解决 来源 在一个 <el-select> 菜单组件中使用<el-option>时&#xff0c;为下拉菜单提供多个选项。每个 <el-option> 代表一个选项。 测试为一个用户添加多个角色&#xff0c;多选异常。 贴BUG代码&#xff1a; <el-form-item label"…

云原生分布式多模架构:华为云多模数据库 GeminiDB 架构与应用实践

文章目录 前言一、GeminiDB 总体介绍1.1、华为云数据库全景图1.2、GeminiDB 发展历程1.3、GeminiDB 全球分布情况 二、GeminiDB 云原生架构2.1、核心设计&#xff1a;存算分离&多模扩展2.2、存算分离&多模扩展核心优势2.3、高可用&#xff1a;秒级故障接管2.4、弹性扩展…

.NetCore部署微服务(二)

目录 前言 概念 一 Consul注册服务中心 1.1 consul下载 1.2 consul运行 二 服务注册 2.1 安装Consul包 2.2 修改配置文件 2.3 注入Consul服务 2.3 修改Controller&#xff0c;增加HealthCheck方法 三 运行服务 3.1 docker运行服务 前言 上一篇讲到微服务要灵活伸缩…

5 - 异常处理

目录 1. 总览 1.1 Exception 与 Error 1.2 checked unchecked 异常 1&#xff09;使用 try-catch 进行捕获 2&#xff09;使用 throws 关键字抛出 1.3 throw 与 throws 1&#xff09;throw 2&#xff09;throws 3&#xff09;区别 1.4 try-catch-finally 2. try wit…