摘要: In this tutorial, we use the MySQL Connector/J driver. It is the official JDBC driver for MySQL. The examples were created and tested on Ubuntu Linux. 阅读全文
posted @ 2020-06-05 12:22 PrimerPlus 阅读(635) 评论(0) 推荐(0) 编辑
摘要: 排序算法之冒泡排序 目录 冒泡排序介绍 O(n^2)的实现方法 优化思路 1. 冒泡排序介绍 冒泡排序是一种比较简单的排序方法,以数组升序的情况为例,它的原理是从第一个元素开始,每个元素都与其相邻的元素做比较,如果前一个元素比后一个元素大,则交换两个元素的位置,每一轮排序都确定一个最大值。它是一种稳 阅读全文
posted @ 2020-06-05 00:49 PrimerPlus 阅读(144) 评论(0) 推荐(0) 编辑
摘要: Level I 1. Take 10 integer inputs from user and store them in an array and print them on screen. package com.codesdope; import java.util.Scanner; publ 阅读全文
posted @ 2020-06-03 15:24 PrimerPlus 阅读(179) 评论(0) 推荐(0) 编辑
摘要: Java Program to Find Largest Element of an array In this program, you'll learn to find the largest element in an array using a for loop in Java. Examp 阅读全文
posted @ 2020-06-02 23:57 PrimerPlus 阅读(205) 评论(0) 推荐(0) 编辑
摘要: In this part of the Java tutorial, we continue covering data types of Java. We cover wrapper classes, boxing and unboxing, default values, conversions 阅读全文
posted @ 2020-06-01 16:12 PrimerPlus 阅读(102) 评论(0) 推荐(0) 编辑
摘要: 30 Days of Node Inside this article ! Introduction Errors in Node Properties of errors Propagation and interception Callbacks Why not Try-Catch About 阅读全文
posted @ 2020-06-01 14:17 PrimerPlus 阅读(95) 评论(0) 推荐(0) 编辑
摘要: In this program, you'll learn to calculate the standard deviation using a function in Java. This program calculates the standard deviation of a indivi 阅读全文
posted @ 2020-05-31 23:57 PrimerPlus 阅读(202) 评论(0) 推荐(0) 编辑
摘要: In the casino game Blackjack, a player can gain an advantage over the house by keeping track of the relative number of high and low cards remaining in 阅读全文
posted @ 2020-05-31 23:30 PrimerPlus 阅读(667) 评论(0) 推荐(0) 编辑
摘要: MacBook Pro jdk卸载步骤 步骤一、输入以下命令 sudo rm -rf /Library/Internet\ Plug-Ins/JavaAppletPlugin.plugin 步骤二、上述命令执行后会提示输入超级管理员密码,完成后再次输入以下命令 sudo rm -rf /Librar 阅读全文
posted @ 2020-05-31 00:49 PrimerPlus 阅读(299) 评论(0) 推荐(0) 编辑
摘要: Updated: May 29, 2020 by Unity How to Download and Install Oracle JAVA 8 on Ubuntu 18.04 LTS Manually. Table of Contents Introduction Java 8 Features: 阅读全文
posted @ 2020-05-29 15:45 PrimerPlus 阅读(566) 评论(0) 推荐(0) 编辑