
Ruby
坏脾气的猪
ubuntu 64bit 10.4
展开
专栏收录文章
- 默认排序
- 最新发布
- 最早发布
- 最多阅读
- 最少阅读
-
基础知识2
require 'win32ole'excel = WIN32OLE::new('excel.Application')workbook = excel.Workbooks.Open('H:\rb\123.xls')worksheet = workbook.Worksheets(1) #定位到第一个sheetworksheet.Selecttemp = worksh原创 2012-10-08 18:13:07 · 442 阅读 · 0 评论 -
基础知识1
puts "hello "\ "world" if falseclass Person @@count =0 def initialize (name , age=18) @name = name @age = age @motherland = "china" end def talk原创 2012-10-08 18:11:48 · 467 阅读 · 0 评论