迭代器模式-C#实现

该实例基于WPF实现,直接上代码,下面为三层架构的代码。

目录

一 Model

二 View

三 ViewModel


一 Model

using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;namespace 设计模式练习.Model.迭代器模式
{//4,具体迭代器类public class ConcreteIterator : Iterator{//迭代器需要对集合对象就行遍历,这里需要引用集合对象private ConcreteList _list;private int _index;public ConcreteIterator(ConcreteList list){_list = list;_index = 0;}public object GetCurrent(){return _list.GetElement(_index);}public bool MoveNext(){if (_index < _list.Length){return true;}return false;}public void Next(){if (_index < _list.Length){_index++;}}public void Reset(){_index = 0;}}
}
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;namespace 设计模式练习.Model.迭代器模式
{//3,具体聚合类public class ConcreteList : IListCollection{object[] collections = null;public ConcreteList(object[] colls){collections = colls;}public Iterator GetIterator(){return new ConcreteIterator(this);}public int Length{get { return collections.Length; }}public object GetElement(int index){return collections[index];}}
}
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;namespace 设计模式练习.Model.迭代器模式
{//1,定义抽象聚合类public interface IListCollection{Iterator GetIterator();}
}

using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;namespace 设计模式练习.Model.迭代器模式
{//2,定义迭代器抽象类public interface Iterator{bool MoveNext();object GetCurrent();void Next();void Reset();}
}




<Window x:Class="设计模式练习.View.迭代器模式.IteratorWindow"xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"xmlns:d="http://schemas.microsoft.com/expression/blend/2008"xmlns:mc="http://schemas.openxmlformats.org/markup-compatibility/2006"xmlns:local="clr-namespace:设计模式练习.View.迭代器模式"mc:Ignorable="d"Title="IteratorWindow" Height="450" Width="800"><Grid><Grid.ColumnDefinitions><ColumnDefinition/><ColumnDefinition/></Grid.ColumnDefinitions><Grid.RowDefinitions><RowDefinition/><RowDefinition/><RowDefinition/><RowDefinition/></Grid.RowDefinitions><TextBlock Text="{Binding Res1}" Grid.Row="0" Grid.Column="0" TextWrapping="Wrap"/><TextBlock Text="{Binding Res2}" Grid.Row="1" Grid.Column="0" TextWrapping="Wrap"/><TextBlock Text="{Binding Res3}" Grid.Row="2" Grid.Column="0" TextWrapping="Wrap"/><TextBlock Text="{Binding Res4}" Grid.Row="3" Grid.Column="0" TextWrapping="Wrap"/><Button Content="遍历集合1" Command="{Binding Col_1Command}" Grid.Row="0" Grid.Column="1"/><Button Content="遍历集合2" Command="{Binding Col_2Command}" Grid.Row="1" Grid.Column="1"/><Button Content="遍历集合3" Command="{Binding Col_3Command}" Grid.Row="2" Grid.Column="1"/><Button Content="遍历集合4" Command="{Binding Col_4Command}" Grid.Row="3" Grid.Column="1"/></Grid>
</Window>

三 ViewModel

using CommunityToolkit.Mvvm.ComponentModel;
using CommunityToolkit.Mvvm.Input;
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
using 设计模式练习.Model.迭代器模式;namespace 设计模式练习.ViewModel.迭代器模式
{partial class IteratorWindow_ViewModel : ObservableObject{[ObservableProperty]private string res1;[ObservableProperty]private string res2;[ObservableProperty]private string res3;[ObservableProperty]private string res4;[RelayCommand]private void Col_1(){object[] ints = { 1, 2, 3, 4, 5, 66, 77, 91, 453 };Iterator iterator;IListCollection list = new ConcreteList(ints);iterator = list.GetIterator();StringBuilder sb = new StringBuilder();while (iterator.MoveNext()){string str = iterator.GetCurrent().ToString();sb.Append(str + ",");//目标指向下一个iterator.Next();}Res1 = sb.ToString();}[RelayCommand]private void Col_2(){object[] ints = { "李俊", "谢军", "小露露", "", "菲利普" };Iterator iterator;IListCollection list = new ConcreteList(ints);iterator = list.GetIterator();StringBuilder sb = new StringBuilder();while (iterator.MoveNext()){string str = iterator.GetCurrent().ToString();sb.Append(str + ",");iterator.Next();}Res2 = sb.ToString();}[RelayCommand]private void Col_3(){object[] ints = { 12.44, 13.567, 33.789 };Iterator iterator;IListCollection list = new ConcreteList(ints);iterator = list.GetIterator();StringBuilder sb = new StringBuilder();while (iterator.MoveNext()){string str = iterator.GetCurrent().ToString();sb.Append(str + ",");iterator.Next();}Res3 = sb.ToString();}[RelayCommand]private void Col_4(){object[] ints = { Res1, Res2, Res3 };Iterator iterator;IListCollection list = new ConcreteList(ints);iterator = list.GetIterator();StringBuilder sb = new StringBuilder();while (iterator.MoveNext()){string str = iterator.GetCurrent().ToString();sb.Append(str + ",");iterator.Next();}Res4 = sb.ToString();}}
}

本文来自互联网用户投稿,该文观点仅代表作者本人,不代表本站立场。本站仅提供信息存储空间服务,不拥有所有权,不承担相关法律责任。如若转载,请注明出处:http://www.mzph.cn/news/647263.shtml

如若内容造成侵权/违法违规/事实不符,请联系多彩编程网进行投诉反馈email:809451989@qq.com,一经查实,立即删除!

相关文章

32个Java面试必考点-06常用工具集

本课时主要介绍常用的工具&#xff0c;将会讲解三个知识点&#xff1a; & JVM 相关工具的作用和适用场景&#xff1b; & Git 常用命令和工作流&#xff1b; & Linux 系统中常用分析工具。 常用工具汇总 常用工具汇总如下图所示。 说明&#xff1a;这里列出的都…

journalctl日期范围操作

这里以Docker 日志为例 要查看特定时间段的 Docker 服务日志&#xff0c;你可以使用 journalctl 命令&#xff0c;并结合 -u 选项来指定服务单元名称&#xff08;docker.service&#xff09;以及 -n 和 -S 选项来限制日志的数量和时间范围。 以下是一个示例命令&#xff0c;用…

k8s的图形化工具--rancher

什么是rancher&#xff1f; rancher是一个开源的企业级多集群的k8s管理平台 rancher和k8s的区别 都是为了容器的调度和编排系统&#xff0c;但是rancher不仅能够调度&#xff0c;还能管理k8s集群&#xff0c;自带监控&#xff08;普罗米修斯&#xff09; 实验部署 实验架构…

电容主要特点和作用,不同类型的电容区别

电容 两个相互靠近的金属板中间夹一层绝缘介质组成的器件&#xff0c;当两端存在电势差时&#xff0c;由于介质阻碍了电荷移动而累积在金属板上&#xff0c;衡量金属板上储存电荷的能力称之为电容&#xff0c;相应的器件称为电容器。 电容&#xff08;Capacitance&#xff09…

移动端 h5-table react版本支持虚拟列表

介绍 适用于 react ts 的 h5 移动端项目 table 组件 github 链接 &#xff1a;https://github.com/duKD/react-h5-table 有帮助的话 给个小星星 有两种表格组件 常规的&#xff1a; 支持 左侧固定 滑动 每行点击回调 支持 指定列排序 支持滚动加载更多 效果和之前写的vue…

【开源】基于JAVA的实验室耗材管理系统

目录 一、摘要1.1 项目介绍1.2 项目录屏 二、功能模块2.1 耗材档案模块2.2 耗材入库模块2.3 耗材出库模块2.4 耗材申请模块2.5 耗材审核模块 三、系统展示四、核心代码4.1 查询耗材品类4.2 查询资产出库清单4.3 资产出库4.4 查询入库单4.5 资产入库 五、免责说明 一、摘要 1.1…

四、Kotlin 表达式

1. 常量 & 变量 1.1 可读写变量&#xff08;var&#xff09; var x initValue // x 称为可读写变量注意&#xff1a;当 var 声明的变量做成员属性时&#xff0c;默认提供 setter/getter 方法。 1.2 只读变量&#xff08;val&#xff09; val x initValue // x 称为只…

FPGA:我的零基础学习路线(2022秋招已上岸)持续更新中~

可内推简历&#xff0c;丝我即可 前言 初次接触FPGA是在2022年3月左右&#xff0c;正处在研二下学期&#xff0c;面临着暑假找工作&#xff0c;周围的同学大多选择了互联网&#xff0c;出于对互联网的裁员形势下&#xff0c;我选择了FPGA&#xff0c;对于硬件基础知识我几乎是…

Vue+OpenLayers7入门到实战:鹰眼控件简单介绍,并使用OpenLayers7在地图上添加鹰眼控件

返回《Vue+OpenLayers7》专栏目录:Vue+OpenLayers7 前言 本章介绍OpenLayers7添加鹰眼控件到地图上的功能。 在OpenLayers中,想要实现鹰眼控件,必须要新建一个数据源,且不能跟其他图层混用,相当于鹰眼是一个单独图层。 补充知识,鹰眼控件是什么? 鹰眼控件是一种在地…

windbg 相关命令记录

主动下载 pdb symchk.exe /r %windir%\ /s srv*D:\LocalSymbolCache*http://msdl.microsoft.com/download/symbols /od/r是递归&#xff0c;/s是指定存放目录和下载源&#xff0c;/od是输出过程中的详细信息 设置 windows 系统 pdb 下载地址 SRV*C:\LocalSymbolCache*http:/…

大数据平台红蓝对抗 - 磨利刃,淬精兵!

背景 目前大促备战常见备战工作&#xff1a;专项压测&#xff08;全链路压测、内部压测&#xff09;、灾备演练、降级演练、限流、巡检&#xff08;监控、应用健康度&#xff09;、混沌演练&#xff08;红蓝对抗&#xff09;&#xff0c;如下图所示。随着平台业务越来越复杂&a…

Kong工作原理 - 负载均衡 - 基于DNS的负载均衡

Kong提供多种请求负载均衡到多个后端服务的方式&#xff1a;默认的基于DNS的方法&#xff0c;以及使用Upstream实体的一组高级负载均衡算法。 默认情况下启用DNS负载均衡器&#xff0c;仅限于循环调度负载均衡。Upstream实体还具有健康检查和断路器功能&#xff0c;除了更高级…

OpenCV功能特性和依赖关系

有许多可选的依赖项和功能可以打开或关闭。 CMake 具有特殊选项&#xff0c;允许打印所有可用的配置参数&#xff1a; cmake -LH ../opencv 选项命名约定 有三种选项用于控制库的依赖项&#xff0c;它们具有不同的前缀&#xff1a; 以启用或禁用依赖项开头的选项WITH_ 从启…

输入框限制输入两位小数 输入金额限制 双向绑定输入框能继续输入但是变量的数据不变解决方案 input 保留两位小数

移动端项目 需求是 输入框只能输入1000以内的数字保留两位小数 开发中发现 用vue开发双向绑定 不管是用value还是v-model 在输入时用input监听输入框变化 校验是否匹配 当不匹配是修改绑定的变量 inputValue时 打印inputValue符合预期 但是input输入框中还是原来输入的值 没有…

RocketMQ源码阅读-八-定时消息和消息重试

RocketMQ源码阅读-八-定时消息和消息重试 定时消息概念逻辑流程图延迟级别Producer发送定时消息Broker存储定时消息Broker发送定时消息Broker 持久化定时发送进度 消息重试总结 定时消息 概念 官网给出的概念&#xff1a;https://rocketmq.apache.org/zh/docs/featureBehavior…

Vue中使px自动转rem配置 (h5适配问题)

以下方法为px自动转换rem&#xff0c;顾名思义&#xff0c;配置完成后&#xff0c;不用再关心rem换算等等&#xff0c;只需按照设计稿的px值写入即可&#xff0c;当你保存后PostCSS插件会自动将px转换成所配置的rem值&#xff0c;并且你在浏览控制台观测界面时你会发现你在代码…

树莓派无显示屏连接

终端命令控制树莓派关机 1&#xff1a;用网线连接树莓派 按照正常的步骤 &#xff0c;搜索控制面板&#xff0c;网络和internet&#xff0c;网络和共享中心&#xff0c;更改适配器设置&#xff0c;右键WIFI&#xff0c;点击属性&#xff0c;点击共享&#xff0c;打勾允许即可&…

redis排序

文章目录 简介SORT命令的实现ALPHA选项的实现ASC和DESCBYLIMITGET命令 类似映射STORE选项的实现多个命令的执行顺序 简介 Redis的SORT命令可以对列表键、集合键或者有序集合键的值进行排序。 SORT命令的实现 服务器执行SORT numbers 命令的详细步骤如下&#xff1a; 1&#…

超分之ESRGAN

Esrgan&#xff1a;增强型超分辨率生成对抗网络。Esrgan: Enhanced super-resolution generative adversarial networks.In: ECCVW. (2018)Xintao Wang, Ke Yu, Shixiang Wu, Jinjin Gu, Yihao Liu,Chao Dong, Yu Qiao, and Chen Change Loy. 文章目录 摘要一、引言二、相关工作…

科大讯飞 再次引爆Ai

去年「科大讯飞版ChatGPT」星火大模型刚上线的时候&#xff0c;小编给大家推荐过一波&#xff0c;演示了其强大的功能&#xff0c;不少小伙伴都立马申请体验了一把&#xff0c;有小伙伴还私信我说功能非常强大&#xff0c;工作效率提高不少&#xff0c;支持国产大模型之类赞扬。…