Java Study notes

public class Demo {

    public static void main(String[] args) {
        //这是输出语句同于将括号内的数据打印到控制台
        System.out.println("hello world");
    }
    /**
     * class:关键字  定义类
     * Demo: 类名称  第一个字母要大写
     * {}: 代表类的主题
     * 在类中需要定义main方法,为java的主线程
     * public: 访问修饰符,代表的是公有的
     * static: 关键字 静态
     * void: 没有返回值的方法
     * 定义方法:   1、有返回的值的方法,需要定义类型
     *             2、无返回的方法(void)
     * main:为java主线程,需要运行Java的程,必须通过main运行
     * main中需要定义参数类型,语法要求必须为String(字符串类型)
     * []数组
     * args:参数名称
     * 切记:所有的符号全部使用英语,区分中英文符号
     * 每次修改文件都需要重新java编译。java文件若创建类时添加访问修饰符
     * public,那么类名称必须和文件名称一致  否则报错
     * 不定义访问修饰符,那么为默认default,可以不写,那么类名称可以与文件名称不一致
     * 在定义类时,尽量都保持一致
     *
     * System:系统
     * out: 向外输出
     * print: 打印
     * 若打印的内容为字符串,使用双引号
     * 字符串:有字符组成的,可以放汉字、拼音、符号、数字等
     */

    /**
     * main为静态方法,静态方法只能被静态的方法或静态的变量访问
     * static a = 8;//全局变量
     * 变量:可以改变的量称之为变量
     * 定义变量:定义数据类型    变量名称    = 赋值;
     * 数据类型
     * 一:基本数据类型8种
     * 整数类型(4种)
     * byte(字节)、short(小数的整数类型:-128到127)
     * int整数类型  定义证书默认的为int类型
     * long(长整型)
     *
     * 浮点型(2种)
     * float(单精度)
     * double(双精度)默认为double
     * 字符类型:char
     *
     * char的值,只能定义一个拼音、汉字、数字、或符号
     * 布尔值:boolean  返回的结果  true  和  false
     *
     *
     * 引用数据类型: 类、接口、数组等
     * print或println(任意类型)
     * 定义变量:2种
     * 成员变量:又称全局变量,全局变量定义在类中,方法体的上面,可以被当前类访问
     * 局部变量:定义在方法体种,只能被当前方法访问
     *
     * 定义float 类型  需要定义大写F或小写f
     *
     * char ** = **;  使用单引号为字符   双引号为字符串
     *
     * 常量:不可以改变的量
     * 如何定义常量  需要时  final 凡是使用final修饰的变量称之为常量
     * 常量名所有字母都大写
     */
}
        if() {
        //若为真执行方法体的内容  若为假不执行
    }

    if() {
        //两者之间选择一个  若为真执行if  为假执行else
    }else {

    }
    if() {}else if() {}else {}   //多个中选择一个

    //单独else和else if 不能使用  必须与if一起使用
    //if可以单独使用        

原文地址:https://www.cnblogs.com/companionspace/p/10417443.html

时间: 2024-10-12 08:06:37

Java Study notes的相关文章

My study notes —— 初始24种设计模式

摘要 设计模式(Design pattern)是一套被反复使用.多数人知晓的.经过分类编目的.代码设计经验的总结.使用设计模式是为了可重用代码.让代码更容易被他人理解.保证代码可靠性. 毫无疑问,设计模式于己于他人于系统都是多赢的:设计模式使代码编制真正工程化:设计模式是软件工程的基石脉络,如同大厦的结构一样. 目录 设计概念 设计原则 四要素 基本模式 创建型 结构型 行为型 正文 设计概念 Change:让代码富有弹性,能够应对需求的变化: DRY:消除冗余,让代码更精炼: KISS:让代码

[2016-03-16]How can I take better study notes?

A:Dad,how can I take better study notes? B:Okay,look.Divide your pate into two columns. A:Like this? B:No.the one on the right should be larger. A:Let me do it agian.Is this better? B:Yes.Write down all the ideas on the right side of the page. A:What

Machine Learning Algorithms Study Notes(3)--Learning Theory

Machine Learning Algorithms Study Notes 高雪松 @雪松Cedro Microsoft MVP 本系列文章是Andrew Ng 在斯坦福的机器学习课程 CS 229 的学习笔记. Machine Learning Algorithms Study Notes 系列文章介绍 3 Learning Theory 3.1 Regularization and model selection 模型选择问题:对于一个学习问题,可以有多种模型选择.比如要拟合一组样本点,

Machine Learning Algorithms Study Notes(2)--Supervised Learning

Machine Learning Algorithms Study Notes 高雪松 @雪松Cedro Microsoft MVP 2    Supervised Learning    3 2.1    Perceptron Learning Algorithm (PLA)    3 2.1.1    PLA -- "知错能改"演算法    4 2.2    Linear Regression    6 2.2.1    线性回归模型    6 2.2.2    最小二乘法( le

Machine Learning Algorithms Study Notes(1)--Introduction

Machine Learning Algorithms Study Notes 高雪松 @雪松Cedro Microsoft MVP 目 录 1    Introduction    1 1.1    What is Machine Learning    1 1.2    学习心得和笔记的框架    1 2    Supervised Learning    3 2.1    Perceptron Learning Algorithm (PLA)    3 2.1.1    PLA -- "知

Java Study First Article-- Install JDK

1. DownLoad Oracle JDK Oracle JDK :http://www.oracle.com/technetwork/java/javase/downloads/index.html 2. Install JDK IN Windows Updating the PATH Environment Variable If you do not set the PATH variable, you need to specify the full path to the execu

Java Study 第一篇 --- 安装JDK

1. JDK http://www.oracle.com/technetwork/java/javase/downloads/index.html 2. Java环境变量设置 To set the PATH variable permanently, add the full path of the jdk1.8.0\bin directory to the PATH variable. Typically, this full path looks something like C:\Prog

ORACLE STUDY NOTES 04

? [JSU]LJDragon's Oracle course notes In the first semester, junior year ? PL/SQL游标(declare .. begin .. end) --游标:指向查询结果集的指针,指针指向哪一行,提取的就是哪一行的数据 --PLSQL的游标默认指向结果集的第1行 --显示游标的四大步骤: 1.定义游标 cursor 游标变量名 is 查询语句; 2.打开游标 open 游标变量名;(可以重复打开) 3.提取游标 fetch 游

Java study 2:The note of studying Socket which based TCP

TCP concept: 传输控制协议(Transmission Control Protocol, TCP)是一种面向连接(连接导向)的.可靠的.基于字节流的运输层(Transport layer)通信协议,由IETF的RFC 793说明(specified).(from bing) 2.TCP program: (1).有明确的C/S之分,Server端用ServerSocket,Client端用Socke; (2).Server端用accept()做監聽等待接收,一旦有鏈接連上的話,返回一