WPF 实现 Gitee 泡泡菜单「完」

 WPF 实现 Gitee 泡泡菜单「完」

气泡菜单「完」

作者:WPFDevelopersOrg

原文链接:    https://github.com/WPFDevelopersOrg/WPFDevelopers

  • 框架使用大于等于.NET40

  • Visual Studio 2022;

  • 项目使用 MIT 开源许可协议;

a3c2d24798b68dce62df76f74e154fed.png
  • 需要实现泡泡菜单需要使用Canvas画布进行添加内容;

  • 保证颜色随机,位置不重叠;

  • 点击泡泡获得当前泡泡的值;

1) BubblleCanvas.cs 代码如下;

using System.Windows;
using System.Windows.Controls;
using WPFDevelopers.Helpers;
using WPFDevelopers.Utilities;namespace WPFDevelopers.Controls
{public class BubblleCanvas : Canvas{private double _bubbleItemX;private double _bubbleItemY;private int _number;private double _size;private const int _maxSize = 120;protected override Size ArrangeOverride(Size arrangeSize){var width = arrangeSize.Width;var height = arrangeSize.Height;double left = 0d, top = 0d;for (var y = 0; y < (int)height / _maxSize; y++){double yNum = y + 1;yNum = _maxSize * yNum;for (var x = 0; x < (int)width / _maxSize; x++){if (_number > InternalChildren.Count - 1)return arrangeSize;var item = InternalChildren[_number] as FrameworkElement;if (DoubleUtil.IsNaN(item.ActualWidth) || DoubleUtil.IsZero(item.ActualWidth) || DoubleUtil.IsNaN(item.ActualHeight) || DoubleUtil.IsZero(item.ActualHeight))ResizeItem(item);_bubbleItemX = Canvas.GetLeft(item);_bubbleItemY = Canvas.GetTop(item);if (double.IsNaN(_bubbleItemX) || double.IsNaN(_bubbleItemY)){double xNum = x + 1;xNum = _maxSize * xNum;_bubbleItemX = ControlsHelper.NextDouble(left, xNum - _size * ControlsHelper.NextDouble(0.6, 0.9));var _width = _bubbleItemX + _size;_width = _width > width ? width - (width - _bubbleItemX) - _size : _bubbleItemX;_bubbleItemX = _width;_bubbleItemY = ControlsHelper.NextDouble(top, yNum - _size * ControlsHelper.NextDouble(0.6, 0.9));var _height = _bubbleItemY + _size;_height = _height > height ? height - (height - _bubbleItemY) - _size : _bubbleItemY;_bubbleItemY = _height;}Canvas.SetLeft(item, _bubbleItemX);Canvas.SetTop(item, _bubbleItemY);left = left + _size;_number++;item.Arrange(new Rect(new Point(_bubbleItemX, _bubbleItemY), new Size(_size, _size)));}left = 0d;top = top + _maxSize;}return arrangeSize;}private void ResizeItem(FrameworkElement item){if (DoubleUtil.GreaterThanOrClose(item.DesiredSize.Width, 55))_size = ControlsHelper.GetRandom.Next(80, _maxSize);else_size = ControlsHelper.GetRandom.Next(55, _maxSize);item.Width = _size;item.Height = _size;}}
}

2) ControlsHelper.cs 代码如下;

  • 随机Double值;

  • 随机颜色;

private static long _tick = DateTime.Now.Ticks;public static Random GetRandom = new Random((int)(_tick & 0xffffffffL) | (int)(_tick >> 32));public static double NextDouble(double miniDouble, double maxiDouble){if (GetRandom != null){return GetRandom.NextDouble() * (maxiDouble - miniDouble) + miniDouble;}else{return 0.0d;}}public static Brush RandomBrush(){var R = GetRandom.Next(255);var G = GetRandom.Next(255);var B = GetRandom.Next(255);var color = Color.FromRgb((byte)R, (byte)G, (byte)B);var solidColorBrush = new SolidColorBrush(color);return solidColorBrush;}

3) BubbleControl.cs 代码如下;

using System;
using System.Collections.Generic;
using System.Collections.ObjectModel;
using System.Diagnostics;
using System.Linq;
using System.Windows;
using System.Windows.Controls;
using System.Windows.Input;
using System.Windows.Media;
using System.Windows.Shapes;
using WPFDevelopers.Helpers;namespace WPFDevelopers.Controls
{[TemplatePart(Name = BorderTemplateName, Type = typeof(Border))][TemplatePart(Name = EllipseTemplateName, Type = typeof(Ellipse))][TemplatePart(Name = RotateTransformTemplateName, Type = typeof(RotateTransform))]public class BubblleControl : Control{private const string BorderTemplateName = "PART_Border";private const string EllipseTemplateName = "PART_Ellipse";private const string RotateTransformTemplateName = "PART_EllipseRotateTransform";private const string ListBoxTemplateName = "PART_ListBox";private static readonly Type _typeofSelf = typeof(BubblleControl);private ObservableCollection<BubblleItem> _items = new ObservableCollection<BubblleItem>();private Border _border;private Ellipse _ellipse;private RotateTransform _rotateTransform;private Brush[] brushs;private ItemsControl _listBox;private static RoutedCommand _clieckCommand;class BubblleItem{public string Text { get; set; }public Brush Bg { get; set; }}static BubblleControl(){InitializeCommands();DefaultStyleKeyProperty.OverrideMetadata(_typeofSelf, new FrameworkPropertyMetadata(_typeofSelf));}#region Eventpublic static readonly RoutedEvent ClickEvent = EventManager.RegisterRoutedEvent("Click", RoutingStrategy.Bubble, typeof(RoutedEventHandler), _typeofSelf);public event RoutedEventHandler Click{add { AddHandler(ClickEvent, value); }remove { RemoveHandler(ClickEvent, value); }}#endregion#region Commandprivate static RoutedCommand _clickCommand = null;private static void InitializeCommands(){_clickCommand = new RoutedCommand("Click", _typeofSelf);CommandManager.RegisterClassCommandBinding(_typeofSelf, new CommandBinding(_clickCommand, OnClickCommand, OnCanClickCommand));}public static RoutedCommand ClickCommand{get { return _clickCommand; }}private static void OnClickCommand(object sender, ExecutedRoutedEventArgs e){var ctrl = sender as BubblleControl;ctrl.SetValue(SelectedTextPropertyKey, e.Parameter?.ToString());ctrl.RaiseEvent(new RoutedEventArgs(ClickEvent));}private static void OnCanClickCommand(object sender, CanExecuteRoutedEventArgs e){e.CanExecute = true;}#endregion#region readonly Propertiesprivate static readonly DependencyPropertyKey SelectedTextPropertyKey =DependencyProperty.RegisterReadOnly("SelectedText", typeof(string), _typeofSelf, new PropertyMetadata(null));public static readonly DependencyProperty SelectedTextProperty = SelectedTextPropertyKey.DependencyProperty;public string SelectedText{get { return (string)GetValue(SelectedTextProperty); }}public new static readonly DependencyProperty BorderBackgroundProperty =DependencyProperty.Register("BorderBackground", typeof(Brush), typeof(BubblleControl),new PropertyMetadata(null));public new static readonly DependencyProperty EarthBackgroundProperty =DependencyProperty.Register("EarthBackground", typeof(Brush), typeof(BubblleControl),new PropertyMetadata(Brushes.DarkOrchid));public Brush BorderBackground{get => (Brush)this.GetValue(BorderBackgroundProperty);set => this.SetValue(BorderBackgroundProperty, (object)value);}public Brush EarthBackground{get => (Brush)this.GetValue(EarthBackgroundProperty);set => this.SetValue(EarthBackgroundProperty, (object)value);}#endregion#region Propertypublic static readonly DependencyProperty ItemsSourceProperty =DependencyProperty.Register("ItemsSource", typeof(IEnumerable<string>), typeof(BubblleControl), new PropertyMetadata(null, OnItemsSourcePropertyChanged));public IEnumerable<string> ItemsSource{get { return (IEnumerable<string>)GetValue(ItemsSourceProperty); }set { SetValue(ItemsSourceProperty, value); }}private static void OnItemsSourcePropertyChanged(DependencyObject obj, DependencyPropertyChangedEventArgs e){var ctrl = obj as BubblleControl;var newValue = e.NewValue as IEnumerable<string>;if (newValue == null){ctrl._items.Clear();return;}foreach (var item in newValue){ctrl._items.Add(new BubblleItem { Text = item, Bg = ControlsHelper.RandomBrush() });}}#endregion#region Overridepublic override void OnApplyTemplate(){base.OnApplyTemplate();_border = GetTemplateChild(BorderTemplateName) as Border;_ellipse = GetTemplateChild(EllipseTemplateName) as Ellipse;_rotateTransform = GetTemplateChild(RotateTransformTemplateName) as RotateTransform;Loaded += delegate{var point = _border.TranslatePoint(new Point(_border.ActualWidth / 2, _border.ActualHeight / 2),_ellipse);_rotateTransform.CenterX = point.X - _ellipse.ActualWidth / 2;_rotateTransform.CenterY = point.Y - _ellipse.ActualHeight / 2;};_listBox = GetTemplateChild(ListBoxTemplateName) as ItemsControl;_listBox.ItemsSource = _items;}#endregion}
}

4) BubblleControl.xaml 代码如下;

<ResourceDictionary xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"xmlns:controls="clr-namespace:WPFDevelopers.Controls"><ResourceDictionary.MergedDictionaries><ResourceDictionary Source="Basic/ControlBasic.xaml"/><ResourceDictionary Source="Basic/Animations.xaml"/></ResourceDictionary.MergedDictionaries><Style TargetType="controls:BubblleControl" BasedOn="{StaticResource ControlBasicStyle}"><Setter Property="Width" Value="400"/><Setter Property="Height" Value="400"/><Setter Property="Background" Value="{StaticResource WhiteSolidColorBrush}"/><Setter Property="BorderThickness" Value="1"/><Setter Property="BorderBrush" Value="{StaticResource SecondaryTextSolidColorBrush}"/><Setter Property="BorderBackground" Value="{StaticResource BaseSolidColorBrush}"/><Setter Property="Template"><Setter.Value><ControlTemplate TargetType="controls:BubblleControl"><Grid Width="{TemplateBinding Width}" Height="{TemplateBinding Height}"><Border BorderBrush="{TemplateBinding BorderBrush}"BorderThickness="{TemplateBinding BorderThickness}" Background="{TemplateBinding BorderBackground}" Margin="45"CornerRadius="400"x:Name="PART_Border"><Ellipse Fill="{TemplateBinding Background}" Margin="20"/></Border><Ellipse Fill="{TemplateBinding EarthBackground}"Width="26" Height="26"RenderTransformOrigin=".5,.5"x:Name="PART_Ellipse"VerticalAlignment="Top" Margin="0,35,0,0"><Ellipse.RenderTransform><RotateTransform x:Name="PART_EllipseRotateTransform"></RotateTransform></Ellipse.RenderTransform><Ellipse.Triggers><EventTrigger RoutedEvent="Loaded"><BeginStoryboard><Storyboard><DoubleAnimation Storyboard.TargetProperty="(Ellipse.RenderTransform).(RotateTransform.Angle)"RepeatBehavior="Forever"From="0" To="360"Duration="00:00:13"></DoubleAnimation></Storyboard></BeginStoryboard></EventTrigger></Ellipse.Triggers></Ellipse><ItemsControl x:Name="PART_ListBox"ItemsSource="{TemplateBinding ItemsSource}"><ItemsControl.ItemTemplate><DataTemplate><Grid><Grid Width="{TemplateBinding Width}" Height="{TemplateBinding Height}"><Ellipse Fill="{Binding Bg}"Opacity=".4"/><Ellipse Stroke="{Binding Bg}" StrokeThickness=".8"/></Grid><TextBlock VerticalAlignment="Center" HorizontalAlignment="Center"Padding="10,0"><Hyperlink Foreground="{Binding Bg}"Command="{x:Static controls:BubblleControl.ClickCommand}"CommandParameter="{Binding Text}"FontWeight="Normal"><TextBlock Text="{Binding Text}"TextAlignment="Center"TextTrimming="CharacterEllipsis"ToolTip="{Binding Text}"/></Hyperlink></TextBlock></Grid></DataTemplate></ItemsControl.ItemTemplate><ItemsControl.ItemsPanel><ItemsPanelTemplate><controls:BubblleCanvas/></ItemsPanelTemplate></ItemsControl.ItemsPanel></ItemsControl></Grid></ControlTemplate></Setter.Value></Setter></Style></ResourceDictionary>

5) BubblleControlExample.xaml 代码如下;

  • TabItem随机 是自动设置位置和颜色;

  • TabItem自定义 可以自行定义展示的内容;

<UserControl x:Class="WPFDevelopers.Samples.ExampleViews.BubblleControlExample"xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"xmlns:mc="http://schemas.openxmlformats.org/markup-compatibility/2006" xmlns:d="http://schemas.microsoft.com/expression/blend/2008" xmlns:wpfdev="https://github.com/WPFDevelopersOrg/WPFDevelopers"xmlns:local="clr-namespace:WPFDevelopers.Samples.ExampleViews"xmlns:sys="clr-namespace:System;assembly=mscorlib"mc:Ignorable="d" d:DesignHeight="450" d:DesignWidth="800"><Grid><TabControl><TabItem Header="随机"><wpfdev:BubblleControl x:Name="MyBubblleControl"  Click="BubblleControl_Click"><wpfdev:BubblleControl.ItemsSource><x:Array Type="sys:String"><sys:String>WPF</sys:String><sys:String>ASP.NET</sys:String><sys:String>WinUI</sys:String><sys:String>WebAPI</sys:String><sys:String>Blazor</sys:String><sys:String>MAUI</sys:String><sys:String>Xamarin</sys:String><sys:String>WinForm</sys:String><sys:String>UWP</sys:String></x:Array></wpfdev:BubblleControl.ItemsSource></wpfdev:BubblleControl></TabItem><TabItem Header="自定义"><wpfdev:BubblleCanvas Width="400" Height="400"><Grid><Grid Width="60" Height="60"><Ellipse Fill="MediumSpringGreen"Opacity=".4"/><Ellipse Stroke="MediumSpringGreen" StrokeThickness=".8"/></Grid><TextBlock VerticalAlignment="Center" HorizontalAlignment="Center"Padding="10,0"><Hyperlink Foreground="MediumSpringGreen"FontWeight="Normal"Command="{Binding ClickCommand,RelativeSource={RelativeSource AncestorType=local:BubblleControlExample}}"><TextBlock Text="WPF"TextAlignment="Center"TextTrimming="CharacterEllipsis"/></Hyperlink></TextBlock></Grid><Grid><Grid Width="60" Height="60"><Ellipse Fill="Brown"Opacity=".4"/><Ellipse Stroke="Brown" StrokeThickness=".8"/></Grid><TextBlock VerticalAlignment="Center" HorizontalAlignment="Center"Padding="10,0"><Hyperlink Foreground="Brown"FontWeight="Normal"Command="{Binding ClickCommand,RelativeSource={RelativeSource AncestorType=local:BubblleControlExample}}"><TextBlock Text="MAUI"TextAlignment="Center"TextTrimming="CharacterEllipsis"/></Hyperlink></TextBlock></Grid><Grid><Grid Width="60" Height="60"><Ellipse Fill="DeepSkyBlue"Opacity=".4"/><Ellipse Stroke="DeepSkyBlue" StrokeThickness=".8"/></Grid><TextBlock VerticalAlignment="Center" HorizontalAlignment="Center"Padding="10,0"><Hyperlink Foreground="DeepSkyBlue"FontWeight="Normal"Command="{Binding ClickCommand,RelativeSource={RelativeSource AncestorType=local:BubblleControlExample}}"><TextBlock Text="Blazor"TextAlignment="Center"TextTrimming="CharacterEllipsis"/></Hyperlink></TextBlock></Grid></wpfdev:BubblleCanvas></TabItem></TabControl></Grid>
</UserControl>

6) BubblleControlExample.xaml.cs 代码如下;

using System.Windows;
using System.Windows.Controls;
using System.Windows.Input;
using WPFDevelopers.Samples.Helpers;namespace WPFDevelopers.Samples.ExampleViews
{/// <summary>/// BubbleControlExample.xaml 的交互逻辑/// </summary>public partial class BubblleControlExample : UserControl{public BubblleControlExample(){InitializeComponent();}public ICommand ClickCommand => new RelayCommand(delegate{WPFDevelopers.Minimal.Controls.MessageBox.Show("点击完成。");});private void BubblleControl_Click(object sender, System.Windows.RoutedEventArgs e){MessageBox.Show($"点击了“ {MyBubblleControl.SelectedText}开发者 ”.", "提示",MessageBoxButton.OK,MessageBoxImage.Information);}}
}
9efd37399eca33e98ef192791a2fdfd6.png

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

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

相关文章

BZOJ 4516: [Sdoi2016]生成魔咒 [后缀自动机]

4516: [Sdoi2016]生成魔咒 题意&#xff1a;询问一个字符串每个前缀有多少不同的子串 做了一下SDOI2016R1D2&#xff0c;题好水啊随便AK 强行开map上SAM 每个状态的贡献就是\(Max(s)-Min(s)1\) 插入的时候维护一下就行了 #include <iostream> #include <cstdio> #i…

Fiddler抓包5-接口测试(Composer)

前言 Fiddler最大的优势在于抓包&#xff0c;我们大部分使用的功能也在抓包的功能上&#xff0c;fiddler做接口测试也是非常方便的。 对应没有接口测试文档的时候&#xff0c;可以直接抓完包后&#xff0c;copy请求参数&#xff0c;修改下就可以了。 一、Composer简介 点开右侧…

【GlobalMapper精品教程】038:模拟水位上升(洪水淹没分析)案例教程

基于数字高程模型 ( DEM )格网模型,实现给定水深情况下洪水淹没区的计算模型,讨论洪水淹没演进过程可视化实现的关键技术,以三维可视化方式,动态而形象地模拟在指定洪水水位下的洪水淹没演进过程。 文章目录 一、洪水淹没效果二、洪水淹没实现三、查询淹没区域面积参考教程…

【.NET6+Avalonia】开发支持跨平台的仿WPF应用程序以及基于ubuntu系统的演示

前言&#xff1a;随着跨平台越来越流行&#xff0c;.net core支持跨平台至今也有好几年的光景了。但是目前基于.net的跨平台&#xff0c;大多数还是在使用B/S架构的跨平台上&#xff1b;至于C/S架构&#xff0c;大部分人可能会选择QT进行开发&#xff0c;或者很早之前还有一款M…

SOA架构和MSA架构之间的关系

目录 一、传统架构&#xff1a;简单单体模式 二、分布式架构&#xff1a;面向服务架构&#xff08;SOA&#xff09; 1、服务与SOA 2、SOA战略 3、SOA的两大基石&#xff1a;RPC和MQ 三、分布式架构&#xff1a;微服务架构&#xff08;MSA&#xff09; 什么是微服务 微服…

Linux系统文件与目录权限管理

Linux文件目录权限管理 一、Linux文件属性及权限 1、Linux文件及目录权限及属性说明 &#xff08;1&#xff09;权限及属性说明 &#xff08;2&#xff09;文件权限说明 三种权限说明&#xff1a;r 读 read w 写 write x 执行 excute 2、修改文件属主及属组 &#xff08;1&am…

一个文本分词程序

WordMap类从分词库中读入分词 将分词存入unordered_map<std::string, int> 中 #pragma once #include<istream> #include<unordered_map> #include<string> #include<ctime> class WordMap { public:WordMap(const std::string& filename);…

scala学习手记28 - Execute Around模式

我们访问资源需要关注对资源的锁定、对资源的申请和释放&#xff0c;还有考虑可能遇到的各种异常。这些事项本身与代码的逻辑操作无关&#xff0c;但我们不能遗漏。也就是说进入方法时获取资源&#xff0c;退出方法时释放资源。这种处理就进入了Execute Around模式的范畴。 在s…

【时序数据库InfluxDB】Windows环境下配置InfluxDB+数据可视化,以及使用 C#进行简单操作的代码实例...

前言&#xff1a;如题。直接上手撸&#xff0c;附带各种截图&#xff0c;就不做介绍了。1、influxDB的官网下载地址 https://portal.influxdata.com/downloads/打开以后&#xff0c;如下图所示&#xff0c;可以选择版本号&#xff0c;以及平台。此处咱们选择windows平台。不过…

官宣 微软跨平台 UI 框架 .NET MAUI 6 正式发布

微软宣布 .NET MAUI 已正式 GA。 .NET MAUI (.NET Multi-platform App UI) 是一个跨平台 UI 框架&#xff08;前身是 Xamarin.Forms&#xff09;&#xff0c;用于通过 C# 和 XAML 创建原生移动和桌面应用。基于 .NET MAUI&#xff0c;开发者可在单个共享代码库中创建同时支持 A…

92. Reverse Linked List II

Reverse a linked list from position m to n. Do it in-place and in one-pass. For example:Given 1->2->3->4->5->NULL, m 2 and n 4, return 1->4->3->2->5->NULL. Note:Given m, n satisfy the following condition:1 ≤ m ≤ n ≤ lengt…

Reset

在常用的代码中&#xff0c;我们使用AddForm.form.reset();或者AddForm.getForm().reset();来将FormPanel重置。 但是当页面增加和修改公用一个formpanel时&#xff0c;当先点击修改时&#xff0c;窗体修改显示出数据&#xff0c;关闭窗体后&#xff08;window.hide()&#xff…

《.NET物联网从零开始》系列

近日搞硬件网关时&#xff0c;那些残存的数电、模电和通信原理的记忆时常在脑海中萦绕&#xff1b;想起来多年前看张高兴的博客学会了.netcore树莓派进行物联网开发。使用dragonboard(龙板)搭载windows 10 iot系统&#xff0c;配合光电传感器和rfid实现了一个项目原型。碰巧逛g…

设计好接口的 36 个锦囊(原则)

目录 设计好接口的 36 个锦囊 | 接口参数校验 | 修改老接口时&#xff0c;注意接口的兼容性 | 设计接口时&#xff0c;充分考虑接口的可扩展性 | 接口考虑是否需要防重处理 | 重点接口&#xff0c;考虑线程池隔离 | 调用第三方接口要考虑异常和超时处理 | 接口实现考虑…

嵌入式第11次实验

嵌入式软件设计第11次实验报告 学号&#xff1a;140201236 姓名&#xff1a;沈樟伟 组别&#xff1a;第2组 实验地点&#xff1a;D19 一、实验目的&#xff1a; 1、了解短信AT指令的使用方法。 2、掌握使用短信AT指令驱动SIM900A发送和接收短信的方…

Linux文件系统之df

df用于查看当前挂载的文件系统-a 查看所有的文件系统可以自己指定容量单位&#xff0c;-BM -BG 但是还是h的选项好用-i 查看inode的使用信息-l(L) 显示本地文件系统--output 可以指定管理员想要看的列--outputField_List可用的字段有source fstype itotal iused iavail ipcent …

普通老实人的生活

2019独角兽企业重金招聘Python工程师标准>>> 有一个朋友&#xff0c;他家有一套营业房&#xff0c;租给了两个年轻人&#xff0c;合同签订为半年&#xff0c;房租7000&#xff0c;合同到期当天&#xff0c;乙方一直没有联系甲方&#xff0c;说明续租或不续租&#x…

如何在 C# 中运行 Python 代码

前言Python是一门强大的编程语言。特别的是&#xff0c;它还具有众多出色的库&#xff08;例如numPy&#xff0c;sciPy&#xff0c;pandas等&#xff09;&#xff0c;可以显著简化和加速开发。因此&#xff0c;在解决某些问题时&#xff0c;通过 Python 实现可能是最理想的方式…

Ubuntu开机默认进入命令行模式/用户图形界面

一、开机默认进入命令行模式 # 输入命令&#xff1a; sudo systemctl set-default multi-user.target # 重启&#xff1a; reboot要进入图形界面&#xff0c;只需要输入命令startx 从图形界面切换回命令行&#xff1a;ctrlaltF7 二、开机默认进入图形用户界面 # 输入命令&…

数组查找数字5

public class Second {/*** param args*/public static void main(String[] args) {// TODO Auto-generated method stubint []a{2,1,3,4,5};for (int i0;i<a.length-1;i){if(a[i]!5){i;}}System.out.println("这组数里有5呢"); }} 转载于:https://www.cnblogs.co…