zoukankan      html  css  js  c++  java
  • 三维数据_包你一看就懂。

    int[, ,] a = new int[3, 1, 3]
                    {
                        {
                            {1,2,3}
                        },
                        {
                            {1,2,3}                               
                        },
                        {
                            {1,2,3}
                        }
                    };

    int[, ,] b = new int[3, 3, 1]
                {
                    {
                        { 1 },
                        { 2 },
                        { 3 }
                    },
                    {
                        { 4 },
                        { 5 },
                        { 6 }
                    },
                    {
                        { 7 },
                        { 8 },
                        { 9 }
                    }
                };

    int[, ,] c = new int[1, 3, 3]
                {
                    {
                        { 1, 2, 3 },
                        { 4, 5, 6 },
                        { 7, 8, 9 }
                    }
                };

  • 相关阅读:
    day35-python-网络编程
    oc-继承(inherit) 方法重写 继承与组合
    oc-self关键字
    oc-类方法
    oc-封装 get set方法
    oc-匿名对象
    oc-函数命名
    oc-函数,方法,类
    解决"authentication token manipulation error"
    让tomcat自动定位到项目
  • 原文地址:https://www.cnblogs.com/pnljs/p/3246192.html
Copyright © 2011-2022 走看看