摘要:
using System; using System.Collections.Generic; using System.Linq; using System.Text; namespace 对战游戏 { class Program { static void Main(string[] args) 阅读全文
摘要:
先搞一个div作为容器层,用来放置风景背景图。 内部放一个div,作为毛玻璃的主体。 再放一个img,显示天气图标。 <html> <head> <meta charset="utf-8"> </style> </head> <body> <div class='container'> <div c 阅读全文
摘要:
数据访问 将数据库中的数据,提取到内存中,展示给用户看还可以将内存中的数据写入数据库中去 并不是唯一的数据库访问技术,但是它是最底层的数据库访问技术 对应命名空间:System.Data.SqlClient; SqlConnection:连接对象 SqlCommand:命令对象 SqlDataRea 阅读全文
摘要:
一、设计模式 1、工厂模式 public class JiSuan { private int a; public int A { get { return a; } set { a = value; } } private int b; public int B { get { return b; 阅读全文