上一页 1 ··· 25 26 27 28 29 30 31 32 33 ··· 39 下一页
摘要: 1、Max()函数是求括号内的数的最大值。2、其中,第一和第二个大括号{}内的数,相信作为财务的应该很清楚,就是个人所得税的缴税比例,以及速算个人应缴所得税的相关数据。3、在EXCEL中,使用{}表示数组公式A、(N4-3500)*{0.03;0.1;0.2;0.25;0.3;0.35;0.45}- 阅读全文
posted @ 2017-10-24 12:26 Advancing-Swift 阅读(25981) 评论(0) 推荐(0) 编辑
摘要: 数组的定义:是用统一的名字代表这批数据,用序号来区分各个数据。数组是有序数据的集合。 如何理解:其实就是一个同时放很多数据的变量。 如 int a0;int a1; int a2; a=1; a=2; a=3; 这成了反复赋值,最后a=3; a怎么能同时放下1,2,3......? 必须是同样的数据 阅读全文
posted @ 2017-10-24 09:40 Advancing-Swift 阅读(532) 评论(0) 推荐(0) 编辑
摘要: 之前在main()函数中的思路是: 用函数嵌套的方法来实现求四个数中最大的数? 阅读全文
posted @ 2017-10-24 09:16 Advancing-Swift 阅读(2355) 评论(0) 推荐(0) 编辑
摘要: 函数外部声明有什么作用? 让我们定义的函数应用范围更广,生命更长久。共享。 也就是说所有的外部函数都可以直接调用。 阅读全文
posted @ 2017-10-24 08:57 Advancing-Swift 阅读(940) 评论(0) 推荐(0) 编辑
摘要: Java的单例模式——饿汉式 Demo类调用 Java的单例模式——懒汉式 Demo类调用 阅读全文
posted @ 2017-10-23 23:01 Advancing-Swift 阅读(971) 评论(0) 推荐(0) 编辑
摘要: package com.swift; //使用无参构造方法自动生成对象,序号不断自增 public class Person { private static int count; //如果在定义类时,使用的是静态的属性,则得到的结果是不同的。count生命周期长,与类相同 public int id; public String name; public int... 阅读全文
posted @ 2017-10-23 20:06 Advancing-Swift 阅读(465) 评论(0) 推荐(0) 编辑
摘要: 静态代码块?类加载就执行,最先执行 class demo{ static int num; static{ num=10; num*=3; System.out.println("haha"); } static void show(){ System.out.println("num="+num) 阅读全文
posted @ 2017-10-23 19:24 Advancing-Swift 阅读(413) 评论(0) 推荐(0) 编辑
摘要: 什么是面向对象程序设计? 我们称为OOP(Object Oriented Programming) 就是非结构化的程序设计 要使用类和对象的方法来进行编程 什么是类,什么是对象 类就是封装了属性和行为的一段程序,实现特定的功能。行为就是指方法,就是函数。什么是属性,就是自定义的字段,也就是定义的变量 阅读全文
posted @ 2017-10-23 14:51 Advancing-Swift 阅读(441) 评论(0) 推荐(0) 编辑
摘要: package com.swift; import java.awt.Color; import java.awt.Point; import java.awt.event.KeyEvent; import com.rupeng.game.GameCore; public class SpriteCoin implements Runnable { public stati... 阅读全文
posted @ 2017-10-21 22:05 Advancing-Swift 阅读(798) 评论(0) 推荐(0) 编辑
摘要: 游戏效果如下图: 游戏下载地址: https://pan.baidu.com/s/1pLPwzBP 阅读全文
posted @ 2017-10-20 22:11 Advancing-Swift 阅读(941) 评论(0) 推荐(0) 编辑
上一页 1 ··· 25 26 27 28 29 30 31 32 33 ··· 39 下一页