以下是如何在您的系统上创建 MySQL 数据库的步骤:
# 安装 mysql
sudo apt-get install mysql-server
# 连接 mysql 服务器
mysql -u root -p
# 创建新的数据库
CREATE DATABASE my_database;
# 创建新的用户并授权访问数据库
CREATE USER ‘new_user’@’%’ IDENTIFIED BY ‘password’;
GRANT ALL PRIVILEGES ON my_database.* TO ‘new_user’@’%’;
在执行以上步骤之后,您已经成功创建了一个名为“my_database”的 MySQL 数据库,并为其创建了一个名为“new_user”的新用户。
在您的应用程序中,您需要配置您的数据库的连接字符串,并使用您的新用户凭据进行访问。
MySQL 是一个功能强大的数据库系统,可以支持各种类型的应用程序。如果您需要更深入了解 MySQL,建议您参考 MySQL 的官方文档。
换。唯一需要记住的是,在调用方法之前必须先声明它。
To create a method without any parameter and return type, the following syntax is considered.
Class class_name{
function _name() {
Statement 1;
Statement 2;
.
.
Statement n;
//an optional return
return;
}
Main function() {
// invoking the above function
function_name();
}
}
在一个类中创建一个空参数列表的方法。方法内部写入语句,可能会在最后加上一个空的返回语句。然后在主方法中调用这个方法。
下面的程序是为了展示如何创建一个既没有参数也没有返回类型的方法。
A class named Wish is created within which, a method named wish() with return type void is created denoting it does not return any value, also it does not consist of any parameter. A statement is written within the wish() method and is displayed by invoking this method in the main method.
// Java Program to demonstrate a method without Parameters and Return Type
public class Wish {
// Declaration and Definition of the method
public static void wish(){
System.out.println(“Good Morning! Have a nice day”);
}
public static void main(String args[]){
// Calling the method without any parameters
wish ();
}
}
Good Morning! Have a nice day
下面的程序是为了展示如何创建一个既没有参数也没有返回类型的方法。
A class named Wish is created within which, a method named wish() with return type void is created denoting it does not return any value, also it does not consist of any parameter. The statements written inside the wish() method are displayed by invoking the method in the main method.
// Java Program to demonstrate a method without Parameters and Return Type
public class Wish {
// Declaration and Definition of the method
public static void wish(){
System.out.println(“Congratulations! Have a great professional life”);
//It is optional to use a return statement here.
return;
}
public static void main(String args[]){
// Calling the method without any parameters
wish();
}
}
Congratulations! Have a great professional life
本文阐述了如何在Java中定义一个没有参数和返回值的方法。我们从语法开始,进一步看到了一个示例和两个Java程序,以便清楚地了解这个主题。
如果您发现该资源为电子书等存在侵权的资源或对该资源描述不正确等,可点击“私信”按钮向作者进行反馈;如作者无回复可进行平台仲裁,我们会在第一时间进行处理!
添加我为好友,拉您入交流群!
请使用微信扫一扫!