Wayback Machinekoobas.hobune.stream
May JUN Jul
Previous capture 13 Next capture
2021 2022 2023
1 capture
13 Jun 22 - 13 Jun 22
sparklines
Close Help
  • Products
  • Solutions
  • Made with Unity
  • Learning
  • Support & Services
  • Community
  • Asset Store
  • Get Unity

UNITY ACCOUNT

You need a Unity Account to shop in the Online and Asset Stores, participate in the Unity Community and manage your license portfolio. Login Create account
  • Blog
  • Forums
  • Answers
  • Evangelists
  • User Groups
  • Beta Program
  • Advisory Panel

Navigation

  • Home
  • Products
  • Solutions
  • Made with Unity
  • Learning
  • Support & Services
  • Community
    • Blog
    • Forums
    • Answers
    • Evangelists
    • User Groups
    • Beta Program
    • Advisory Panel

Unity account

You need a Unity Account to shop in the Online and Asset Stores, participate in the Unity Community and manage your license portfolio. Login Create account

Language

  • Chinese
  • Spanish
  • Japanese
  • Korean
  • Portuguese
  • Ask a question
  • Spaces
    • Default
    • Help Room
    • META
    • Moderators
    • Topics
    • Questions
    • Users
    • Badges
  • Home /
avatar image
0
Question by SUpersindit2 · Apr 02, 2015 at 01:35 PM · constructors

What Does [,] means? Class Constructor

Im following a tutorial in youtube and i noticed something,what does [,] means?

The class constructor :

 using UnityEngine;
 using System.Collections;
 
 public class Node {
 
     public Vector3 worldpoint;
     public bool walkable;
     public Node parent;
 
     public int hcost,gcost;
     public int gridX,gridY;
 
     public Node(Vector3 _worldpoint,bool _walkable,int _gridX,int _gridY)
     {
         worldpoint = _worldpoint;
         walkable = _walkable;
         gridX = _gridX;
         gridY = _gridY;
     }
     public int fCost
     {
         get
         {
             return hcost + gcost;
         }
     }
 }


The using of the class constructor :

 using UnityEngine;
 using System.Collections;
 using System.Collections.Generic;
 
 public class Grid : MonoBehaviour {
 
     Node[,] grid;
 }

Comment
Add comment
10 |3000 characters needed characters left characters exceeded
▼
  • Viewable by all users
  • Viewable by moderators
  • Viewable by moderators and the original poster
  • Advanced visibility
Viewable by all users

3 Replies

· Add your reply
  • Sort: 
avatar image
2
Best Answer

Answer by Landern · Apr 02, 2015 at 01:37 PM

It's a multidimensional array. You can think of it like a grid in this case. If the grid was initialized as:

Node[,] grid = new Node[10, 5];

The grid would be 10 by 5.

check out the MSDN documentation on arrays:

Comment
Add comment · Show 1 · Share
10 |3000 characters needed characters left characters exceeded
▼
  • Viewable by all users
  • Viewable by moderators
  • Viewable by moderators and the original poster
  • Advanced visibility
Viewable by all users
avatar image SUpersindit2 · Apr 07, 2015 at 01:30 PM 0
Share

Is one of the uses like this? use a list, the X size,the Y size for loop through all the size then add them to the list 2 dimesionally so that it can find its specific number in the list?

avatar image
1

Answer by steakpinball · Apr 02, 2015 at 01:40 PM

It means multidimensional array. Also known as a matrix.

https://msdn.microsoft.com/en-us/library/2yd9wwz4.aspx

The case in your description creates an array of two dimensions. Every row will have the same number of columns. As opposed to a jagged array, Node[][] grid, which could have a different number of columns in each row.

Comment
Add comment · Share
10 |3000 characters needed characters left characters exceeded
▼
  • Viewable by all users
  • Viewable by moderators
  • Viewable by moderators and the original poster
  • Advanced visibility
Viewable by all users
avatar image
0

Answer by HarshadK · Apr 02, 2015 at 01:38 PM

It's a 2D array of type Node.

Read: Multidimensional Arrays (C# Programming Guide)

Comment
Add comment · Share
10 |3000 characters needed characters left characters exceeded
▼
  • Viewable by all users
  • Viewable by moderators
  • Viewable by moderators and the original poster
  • Advanced visibility
Viewable by all users

Your answer

Hint: You can notify a user about this post by typing @username

Up to 2 attachments (including images) can be used with a maximum of 524.3 kB each and 1.0 MB total.

Follow this Question

Answers Answers and Comments

3 People are following this question.

avatar image avatar image avatar image

Related Questions

Constructors always returning void 2 Answers

Passing arguments into a constructor via AddComponent 5 Answers

How does one go about creating a list of GameObjects? 1 Answer

get_dataPath is not allowed to be called from a ScriptableObject constructor 0 Answers

Constructor giving nullreference error 1 Answer


Enterprise
Social Q&A

Social
Subscribe on YouTube social-youtube Follow on LinkedIn social-linkedin Follow on Twitter social-twitter Follow on Facebook social-facebook Follow on Instagram social-instagram

Footer

  • Purchase
    • Products
    • Subscription
    • Asset Store
    • Unity Gear
    • Resellers
  • Education
    • Students
    • Educators
    • Certification
    • Learn
    • Center of Excellence
  • Download
    • Unity
    • Beta Program
  • Unity Labs
    • Labs
    • Publications
  • Resources
    • Learn platform
    • Community
    • Documentation
    • Unity QA
    • FAQ
    • Services Status
    • Connect
  • About Unity
    • About Us
    • Blog
    • Events
    • Careers
    • Contact
    • Press
    • Partners
    • Affiliates
    • Security
Copyright © 2020 Unity Technologies
  • Legal
  • Privacy Policy
  • Cookies
  • Do Not Sell My Personal Information
  • Cookies Settings
"Unity", Unity logos, and other Unity trademarks are trademarks or registered trademarks of Unity Technologies or its affiliates in the U.S. and elsewhere (more info here). Other names or brands are trademarks of their respective owners.
  • Anonymous
  • Sign in
  • Create
  • Ask a question
  • Spaces
  • Default
  • Help Room
  • META
  • Moderators
  • Explore
  • Topics
  • Questions
  • Users
  • Badges