C#
爱吃的小花猫
来者皆客
展开
-
C++中的class (1)
1、public:public表明该数据成员、成员函数是对所有用户开放的,所有用户都可以直接进行调用2、private:private表示私有,私有的意思就是除了class自己之外,任何人都不可以直接使用,私有财产神圣不可侵犯嘛,即便是子女,朋友,都不可以使用。 3、protected:protected对于子女、朋友来说,就是public的,可以自由使用,没有任何限制,而原创 2015-03-14 03:04:14 · 770 阅读 · 0 评论 -
算法 binary search
// -------------------------------------------------------------------------------------------------------------------- // // Respect the work. // // // The binary search (not recurs原创 2015-03-13 16:31:23 · 1290 阅读 · 1 评论 -
Answer's Question about pointer
When you create a new pointer, this will be in heap until you delete it. So what you said is sort of mistake, "函数内部有个局部变量指针", then the pointer should not exist after the function return.Therefor原创 2015-03-14 01:16:23 · 627 阅读 · 0 评论 -
各种数据结构与算法知识入门经典(不断更新)
自荐者和推荐者请留言基本算法贪心算法:贪心算法 作者:独酌逸醉 贪心算法精讲 作者:3522021224递归和分治:递归与分治策略 作者:zhoudaxia图论图的遍历(DFS和BFS): 图的遍历 作者:jefferent最小生成树(Prim算法和Kruskal算法): 贪心算法--最小生成树 作者:独酌逸醉Dij原创 2015-03-11 16:06:48 · 1668 阅读 · 0 评论 -
编程学习网站 收集于网络
1、http://snippets.dzone.com/tag/c/ --数以千计的有用的C语言源代码片段2、http://www.hotscripts.com/category/c-cpp/scripts-programs/ Hotscripts --提供数以百计的C和C++脚本和程序。所有程序都分为不同的类别。3、http://www.planetsourcecode.com/vb/d原创 2015-03-08 17:06:05 · 63325 阅读 · 0 评论 -
C++中的class (2)
class Father{ protected void methodA(){ //do something } private void methodB(){//do something }}class Child:Father{}那么Child child=new Child();child.methodA(); //Rightchild.methodB原创 2015-03-14 03:33:59 · 641 阅读 · 0 评论 -
C#中构造函数的定义
C#构造函数是在创建给定类型的对象时执行的类方法。构造函数具有与类相同的名称,它通常初始化新对象的数据成员。不带参数的构造函数称为“默认构造函数”。 无论何时,只要使用 new 运算符实例化对象,并且不为 new 提供任何参数,就会调用默认构造函数。除非类是 static 的,否则 C# 编译器将为无构造函数的类提供一个公共的默认构造函数,以便该类可以实例化。构造函数必须是在类里的一级声明,并原创 2015-03-23 13:34:57 · 2115 阅读 · 0 评论 -
在C#中的构造函数和解析函数
构造函数class A(){A(){Console.write("构造函数");}}当你在程序种出现 A a=new A();的时候 程序自动执行 构造函数A(){Console.write("构造函数");}而析构函数 的写法是~A() {} 意思是 回收系统不用的内存但是 C#里 有垃圾自动回收 所以 析构函数 基本不用 在C++用的比较多原创 2015-03-23 13:59:49 · 1905 阅读 · 0 评论 -
Why does the C# compiler translate this != comparison as if it were a > comparison?
Question:I have by pure chance discovered that the C# compiler turns this method:static bool IsNotNull(object obj){ return obj != null;}…into this IL:.method private hidebysig static原创 2015-03-24 15:50:01 · 698 阅读 · 0 评论 -
Does the C standard guarantee buffers are not touched past their null terminator?
Question:In the various cases that a buffer is provided to the standard library's many string functions, is it guaranteed that the buffer will not be modified beyond the null terminator? For examp原创 2015-03-24 15:55:42 · 822 阅读 · 0 评论 -
C# Why does '+' + a short convert to 44
I have a line of code that looks like this:MyObject.PhoneNumber = '+' + ThePhonePrefix + TheBizNumber;Basically, I'm creating a phone number in E164 format and then I assign that string to a str原创 2015-04-07 09:27:08 · 760 阅读 · 0 评论 -
加拿大的考试季 帮助及讨论帖
多谢大家的一直以来的支持今日应该是加拿大、美国等国家期末考试的非常时期,所以我想尽量的帮助到大家,如果有什么问题的话,可以向给我评论,看我能不能帮到大家。我可以回答的问题不限,但我的时间有限,所以回答的速度不敢保证。多谢原创 2015-04-08 08:07:59 · 882 阅读 · 1 评论 -
算法 quick sort
// -------------------------------------------------------------------------------------------------------------------- // // // Respect the work. // // // // // The quick sor原创 2015-03-13 16:28:34 · 720 阅读 · 0 评论 -
算法 Heap sort
// -------------------------------------------------------------------------------------------------------------------- // // // Respect the work. // // // // // Heap sort.原创 2015-03-13 16:28:20 · 760 阅读 · 0 评论 -
Unity multiplayer
using UnityEngine;using System.Collections;public class multiplayer_Button : MonoBehaviour {void OnGUI(){const int buttonWidth = 150;const int buttonHeight = 60;// Determine the原创 2015-03-13 16:10:08 · 939 阅读 · 0 评论 -
C++的class的例子
私有就是只能够通过内部调用,在类外面是不可以使用私有成员的简单的写一个 Class A{ public: //你可以通过公有的函数去访问私有成员 Demo() //可以在这使用私有成员 { m_buff = 0; } private: //私有成员 int m_buff;}void main(){ A a原创 2015-03-14 18:04:53 · 911 阅读 · 0 评论 -
命名空间std::的例子(2)
int x = 20; namespaceouter { intx = 10; namespaceinner { intz = x; } } int main() { std::cout << outer::inner::z;// 输出10 return 0;原创 2015-03-20 15:00:55 · 708 阅读 · 0 评论 -
C语言100个经典的算法
C语言的学习要从基础开始,这里是100个经典的算法-1C语言的学习要从基础开始,这里是100个经典的算法题目:古典问题:有一对兔子,从出生后第3个月起每个月都生一对兔子,小兔子长到第三个月后每个月又生一对兔子,假如兔子都不死,问每个月的兔子总数为多少?______________________________________________原创 2015-03-13 22:38:25 · 8007 阅读 · 3 评论 -
What is the name of the “-->” operator?(Stackoverflow)
Question:After reading Hidden Features and Dark Corners of C++/STL on comp.lang.c++.moderated, I was completely surprised that it compiled and worked in both Visual Studio 2008 and G++ 4.4.T原创 2015-03-21 01:27:53 · 3932 阅读 · 0 评论 -
数组-条件求和(Code)
static void Main(string[] args){ // Generate data int arraySize; int[] data; Random rnd; arraySize = 32768; data = new int[arraySize]; rnd = new Random(0); for (int原创 2015-03-21 02:26:45 · 4012 阅读 · 0 评论 -
vim cheat sheet
原创 2015-03-21 04:16:26 · 2083 阅读 · 0 评论 -
浅谈分支预测、流水线与条件转移
在StackOverflow上有这么一个问题 Why is processing a sorted array faster than an unsorted array? 。例子中,对一个数组进行条件求和,在排序前和排序后,性能有很大的差别。原始的例子是C++和Java的,这里将其换成了C# :static void Main(string[] args){ // Genera转载 2015-03-21 02:27:44 · 5202 阅读 · 1 评论 -
C# ignoring letter case for if statement(Stackoverflow)
Question:I have this if statement:if (input == 'day') Console.Write({0}, dayData);When the user types 'day' it should be so that the console writes the data in that array. It works fine原创 2015-03-21 01:07:31 · 4035 阅读 · 0 评论 -
Why doesn't incrementing Nullable<int> throw an exception?(stackoverflow)
Question:Could you please explain, why does Console.WriteLine write empty line (Console.WriteLine(null)give me compilation error) and why there isn't NullReferenceException (even a+=1 shouldn't原创 2015-03-22 08:57:13 · 1326 阅读 · 0 评论 -
Unity Enemy behaviour
using UnityEngine;using System.Collections;public class enemyBehaviour : MonoBehaviour{ //enemy that moves to player when close enough public float speed = 6f; public Tran原创 2015-03-13 15:37:06 · 825 阅读 · 0 评论 -
Unity KillCount
using UnityEngine;using System.Collections;public class KillCountMult : MonoBehaviour {public GUIText kText;public static int kills1;public static int kills2;public static bool playe原创 2015-03-13 15:53:34 · 896 阅读 · 0 评论 -
Verification and validation
VerificationVerification is the process to make sure the product satisfies the conditions imposed at the start of the development phase. In other words, to make sure the product behaves the way原创 2015-06-14 12:32:02 · 1127 阅读 · 0 评论