learn
哈哈哈已存在?
这个作者很懒,什么都没留下…
展开
-
C# Task总结(Task,Action,Func,委托之间的联系)
Task,Action,Func,lambdadelegate void Fun();var task = new Task( fun)原创 2018-11-13 11:46:48 · 12590 阅读 · 0 评论 -
C# async 和 await的使用
异步方法具有三个可让开发人员选择的返回类型:Task、Task 和 void。#返回类型 - Task原创 2018-11-13 16:10:22 · 296 阅读 · 1 评论 -
C# MVVM,ICommand的简单实现
Model部分实现INotifyPropertyChanged接口,使其能够发出某一属性值发生改变的通知using System;using System.Collections.Generic;using System.ComponentModel;using System.Linq;using System.Text;using System.Threading.Tasks;...原创 2018-11-15 19:13:48 · 5416 阅读 · 1 评论 -
指针数组,数组指针,数组引用
好久不用C++,今天遇到数组指针又迷糊了,感觉复习一波并记录下来数组引用定义一个4x3的数组:int arr[4][3] = { 0,11,22,33,44,55,66,77,88,1,2,3 };定义对数组的引用:ref是一个大小为3的数组,是对a[0]的引用;int(&ref)[3] = arr[0];若想对整个arr引用,在定义引用时则创建二维数组:int(&am...原创 2018-11-21 10:49:37 · 1148 阅读 · 0 评论 -
智能指针实现
智能指针-类的定义`templateclass MySmartPoint{T* m_ptr;size_t* ref_count = 0;public:MySmartPoint(T* ptr = nullptr);~MySmartPoint();MySmartPoint(const MySmartPoint& s_point);MySmartPoint& ...原创 2019-04-11 11:07:26 · 279 阅读 · 0 评论