博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
委托action 与func
阅读量:5305 次
发布时间:2019-06-14

本文共 996 字,大约阅读时间需要 3 分钟。

1 using System; 2 using System.Collections; 3 using System.Collections.Generic; 4 using UnityEngine; 5  6 public class weituo : MonoBehaviour { 7  8     // Use this for initialization 9     void Start () {10         Action ac = ppx;11         ac();12         Action
act = ppx1;13 act("ppx");14 Func
func = ppx2;15 func();16 Func
func1 = ppx3;17 func1(5);18 19 }20 21 private int ppx2()22 {23 Debug.Log("我是有返回值无参数的委托方法");24 return 1;25 }26 private int ppx3(int a)27 {28 Debug.Log("我是有返回值有参数的委托方法");29 return a;30 }31 32 // Update is called once per frame33 void Update () {34 35 }36 public void ppx()37 {38 Debug.Log("我是无返回值无参数的委托方法");39 }40 public void ppx1(string name)41 {42 Debug.Log("我是无返回值有参数的委托方法");43 }44 }

 

转载于:https://www.cnblogs.com/mafeihao/p/10104813.html

你可能感兴趣的文章
右侧导航栏(动态添加数据到list)
查看>>
81、iOS本地推送与远程推送详解
查看>>
虚拟DOM
查看>>
自建数据源(RSO2)、及数据源增强
查看>>
关于View控件中的Context选择
查看>>
2018icpc徐州OnlineA Hard to prepare
查看>>
Spark的启动进程详解
查看>>
使用命令创建数据库和表
查看>>
数据库的高级查询
查看>>
机器视觉:SSD Single Shot MultiBox Detector
查看>>
201521123044 《Java程序设计》第1周学习总结
查看>>
MIT Scheme 的基本使用
查看>>
程序员的“机械同感”
查看>>
在16aspx.com上下了一个简单商品房销售系统源码,怎么修改它的默认登录名和密码...
查看>>
c++回调函数
查看>>
linux下Rtree的安装
查看>>
【Java】 剑指offer(53-2) 0到n-1中缺失的数字
查看>>
Delphi中ListView类的用法
查看>>
多米诺骨牌
查看>>
Linq 学习(1) Group & Join--网摘
查看>>