会员
周边
新闻
博问
闪存
众包
赞助商
Chat2DB
所有博客
当前博客
我的博客
我的园子
账号设置
会员中心
简洁模式
...
退出登录
注册
登录
Ahoga
山中何事?
博客园
首页
新随笔
联系
订阅
管理
2020年2月28日
[C#] 初始化器和构造函数
摘要: 一. 初始化器的简单使用 using System; namespace 初始化器 { class Program { static void Main(string[] args) { //1. 常见的初始化方式,将类实例化,并通过构造函数将参数传递进类中,此方式通过 public Student
阅读全文
posted @ 2020-02-28 20:43 Ahoga
阅读(2108)
评论(0)
推荐(0)
2020年2月27日
[C#] 委托与匿名方法
摘要: using System; namespace 匿名函数 { class Program { delegate void TestDelegate(string s); static void M(string s) { Console.WriteLine("A参数为:{0}", s); } sta
阅读全文
posted @ 2020-02-27 18:36 Ahoga
阅读(1083)
评论(0)
推荐(0)
2020年2月26日
[python] VSCode+Jupyter 安装步骤以及注意事项
摘要: 1. 安装Python2. 安装Jupyter, pip install 安装Jupyter(若使用Anaconda,则需要将其添加到环境变量中)3. 将Python的Scripts文件夹添加到系统环境变量中4. 在VScode中添加Python插件5. 将VSCode的Extension文件夹添加
阅读全文
posted @ 2020-02-26 13:21 Ahoga
阅读(3640)
评论(0)
推荐(0)
公告