Static and non-Static :  非静态方法(不带static)可以访问静态变量和方法(带static),但是反过来就不行. 类的静态成员(变量和方法)属于类本身,在类加载的时候就会分配内存,可以通过类名直接去访问. 非静态成员(变量和方法)属于类的对象,只有在类的对象产生(创建实例)的时候才会分配内存,然后通过类的对象去访问. 在一个类的静态成员中去访问非静态成员之所以会出错是因为在类的非静态成员不存在的时候静态成员就已经存在了,访问一个内存中不存在的东西会出错. 静态变量和方…
Operator : While Loop : For Loop :  Arrays : Code : public class FirstJavaClass { public static void main(String[] args) { int arr[] = new int[5]; arr[0]=78; arr[1]=980; arr[2]=98; arr[3]=9; arr[4]=765; System.out.println(arr[2]); System.out.println(…
Download Java : https://java.com/en/download/ Download Eclipse : https://www.eclipse.org/downloads/ Code : public class FirstJavaClass { // function public static void main(String[] args) { System.out.println("hello world"); // syso -> cntrl+…
Object Oriented Programming python new concepts of the object oriented programming : class encapsulation inheritance polymorphism the three features of an object are : identity, state and behaviora class is an abstraction which regroup objects who ha…
Constructor :  Grammar: object.constructor Example: Javascript code: 1 function obj1() { this.number = 1; } var x1 = new String("Computer"); if (x1.constructor == String) document.write("This object is a String."); var x2 = new obj1; i…
一千个读者,一千个哈姆雷特.对于面对对象编程,书上都会告诉我们它有三个基本特性,封装,继承,多态,但谈起对这三点的见解,又是仁者见仁智者见智,感觉还是得多去编程中体验把 . 面向对象编程(OOP, Object Oriented Programming)是一种编写程序的方法,旨在提升开发大型程序的效率,使程序易于维护 . 面向对象编程是一种基于以下思路的程序设计方法:将关注点置于对象(Object)本身,对象的构成要素包含对象的行为及操作,以此为基础进行编程.这种方法使程序易于复用,软件的生产效…
面向对象(object oriented)计划 详细解释 本文地址: http://blog.csdn.net/caroline_wendy/article/details/24058107 程序包括两部分组成: 数据 和操作数据的函数; 面向过程的设计方法是自顶向下的功能分解, 把一个需求分解成多个子功能, 开发子功能并进行单元測试, 在组装成一个完整的应用程序; 问题: 1. 程序主要关注功能, 其次数据, 数据从一个函数流动至还有一个函数; 2. 数据结构须要贯穿多个函数; 3. 改动数据…
把对象作为程序的基本单元,一个对象包含了数据和操作数据的函数. 面向过程的程序设计把计算机程序视为一系列的命令集合,即一组函数的顺序执行.为了简化程序设计,面向过程把函数继续切分为子函数,即把大块函数通过切割成小块函数来降低系统的复杂度. 一:封装(类内的事) 对于类的方法而言,对外只知道功能隐藏细节 假设我们要处理学生的成绩表,为了表示一个学生的成绩,面向过程的程序可以用一个dict表示: #面向程序 std1 = { 'name': 'Michael', 'score': 98 } std2…
Pytho 是面向對象的程式語言,舉凡 Literals 值都是 Object.例如: >>> id(38)8791423739696 與 >>> id('ABC')34336360 都有一個內建的指針 pointer 指向此 Object,即每一個 Object 都有唯一的 ID 值,透過 id 這指令來訪問此 Object.例如: 38 此 Object 在 RAM 的存儲位置是 8791423739696,而 'ABC' 這字串的存儲位置在 34336360. 一…
https://leetcode.com/problems/design-twitter/ Design a simplified version of Twitter where users can post tweets, follow/unfollow another user and is able to see the 10 most recent tweets in the user's news feed. Your design should support the follow…