newlist

  博客园 :: 首页 :: 博问 :: 闪存 :: 新随笔 :: 联系 :: 订阅 订阅 :: 管理 ::

2019年10月30日

摘要: 总览 start 1.素质教育以提高国民素质为根本宗旨4.素质教育是促进学生个性发展的教育5.素质教育是以培养学生的创新精神和事件能力为重点的教育2.素质教育是面向全体学生的教育3.素质教育是促进学生全面发展的教育(背诵小本本:提素个性创两全) 2.从教学与课程的关系看,新课程要求教师应该是课程的建 阅读全文
posted @ 2019-10-30 19:04 一枚程序 阅读(519) 评论(0) 推荐(0) 编辑

摘要: 第一个java程序 public class HelloWorld { public static void main(String[] args) { System.out.println("Hello World"); }}命令$ javac HelloWorld.java$ java Hell 阅读全文
posted @ 2019-10-30 19:02 一枚程序 阅读(275) 评论(0) 推荐(0) 编辑

2019年5月12日

摘要: 阅读全文
posted @ 2019-05-12 18:57 一枚程序 阅读(95) 评论(0) 推荐(0) 编辑

2015年7月16日

摘要: 1.创建一个layer层var GameLayer = cc.Layer.extend({ _time:null, _ship:null, _backSky:null, // 构造函数 ctor:function(){ this._super(); ... 阅读全文
posted @ 2015-07-16 17:37 一枚程序 阅读(297) 评论(0) 推荐(0) 编辑

2015年3月24日

摘要: #include "HelloWorldScene.h"//物理引擎标识 int ball1Mask = 1 getPhysicsWorld()->setDebugDrawMask(PhysicsWorld::DEBUGDRAW_ALL); // 'layer' is an au... 阅读全文
posted @ 2015-03-24 17:34 一枚程序 阅读(592) 评论(0) 推荐(0) 编辑

2015年3月23日

摘要: cc.ui.UIPushButton.new({ normal = "comm_btnGreenBackBack.png", pressed = "comm_btnGreenBackBack_sel.png" }) :onButtonClicked(function() ... 阅读全文
posted @ 2015-03-23 10:29 一枚程序 阅读(2970) 评论(0) 推荐(0) 编辑

摘要: local imgBg = display.newSprite("666666.jpg") :pos(display.cx, display.cy) :addTo(self) local move1 = cc.MoveBy:create(0.... 阅读全文
posted @ 2015-03-23 10:17 一枚程序 阅读(256) 评论(0) 推荐(0) 编辑

2015年3月19日

摘要: #define RAND_LIMIT 32767/// Random number in range [-1,1]inline float32 RandomFloat(){ float32 r = (float32)(std::rand() & (RAND_LIMIT)); ... 阅读全文
posted @ 2015-03-19 14:03 一枚程序 阅读(712) 评论(0) 推荐(0) 编辑

2015年3月12日

摘要: 1、svn检出命令:checkout(co)svncheckouthttps://192.168.1.91/svn/xg_new/xg/--username=mj--password=123/Usersentong/Desktop说明:将服务器中xg仓库的内容下载到/Usersentong/Desk... 阅读全文
posted @ 2015-03-12 17:45 一枚程序 阅读(420) 评论(0) 推荐(0) 编辑

2015年3月5日

摘要: math.randomseed(os.time())local function printGrid(grid) local celllen = 8 -- one cell have character count local gridStrLines = {} table.in... 阅读全文
posted @ 2015-03-05 19:55 一枚程序 阅读(889) 评论(0) 推荐(0) 编辑