2010年8月5日

枚举类型

摘要: namespace ConsoleApplication1{ public class Stack : IEnumerable { public int[] items = { 0, 1, 2, 3 }; public IEnumerator GetEnumerator() { for (int i = 0; i < items.Length; i++) yield return items[i]; } } class Program { static void Main(string[] args) { Stack stack=new Stack(); IEnumerator i=st 阅读全文

posted @ 2010-08-05 22:15 java课程设计 阅读(176) 评论(0) 推荐(0) 编辑

字符串格式化

摘要: using System;using System.Collections.Generic;using System.Text;using System.Text;namespace Wrox.ProCSharp.FormattableVector{ class MainEntryPoint { static void Main() { Vector v1 = new Vector(1, 32, 5); Vector v2 = new Vector(845.4, 54.3, -7.8); ... 阅读全文

posted @ 2010-08-05 21:39 java课程设计 阅读(166) 评论(0) 推荐(0) 编辑

JavaScript js csdn 文字滚动广告效果

摘要: csdn博客中的招聘广告效果代码<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN"><html> <head> <title>csdn 博客 招聘滚动信息广告特效</title> <meta http-equiv="author" content="hoojo"> <meta http-equiv="description" content="this i 阅读全文

posted @ 2010-08-05 13:11 java课程设计 阅读(273) 评论(0) 推荐(0) 编辑

导航