
C#学习笔记
xiaoshengyige
这个作者很懒,什么都没留下…
展开
专栏收录文章
- 默认排序
- 最新发布
- 最早发布
- 最多阅读
- 最少阅读
-
[c#学习]关于Console.WriteLine()格式输出we
关于Console.WriteLine("Summed Values={0},sum);中{0}的作用。{0}格式化输出第一个参数的值。如果{1}对应为输出第二个参数的值。 开始学习C#,努力加油。原创 2011-07-06 21:47:13 · 722 阅读 · 0 评论 -
用c#写的DFT和FFT变换的程序
using System; using System.Collections.Generic; using System.Linq; using System.Text; using System.Windows.Forms; //实现复数运算的类namespace New_w原创 2011-09-12 22:51:29 · 5069 阅读 · 5 评论 -
更改c++私有变量的方法
1.用构造函数进行赋值。 (调用代参构造函数的方法: class A { int x ,y; public: A(int a,int b) { x=a; y=b; } }; void main() { A a(5,6);//调用带参构造函数的方原创 2011-09-24 11:12:14 · 1223 阅读 · 0 评论 -
C#不存在私有继承和保护继承,只有公有继承,这点和C++相比还是简单了很多
C#不存在私有继承和保护继承,只有公有继承,这点和C++相比还是简单了很多原创 2012-12-03 16:20:32 · 1989 阅读 · 0 评论