linked lists, +rep for help

Dirac

22710180
Reaction score
147
That allocation method looks almost exactly as the one I use in my LinkedListModule, except for the [ljass]else[/ljass], remember that after [ljass]return[/ljass] everything else is skipped, so there's no need for it, also it wont compile unless it returns something at the end of the function, in your case it doesn't
 

GFreak45

I didnt slap you, i high 5'd your face.
Reaction score
130
ok i finally understand, and there are so many different rigid requirements for compilation, i did not know that you MUST have a return at the end regardless of what returns you might have in if/else statements and until recently i also did not know that local variables must have a value on declaration but globals do not have to, and struct variables can not...

thats where my jass knowledge is most limited and im sure most of it will come with more experience
 

Sgqvur

FullOfUltimateTruthsAndEt ernalPrinciples, i.e shi
Reaction score
62
>local variables must have a value on declaration
>thats where my jass knowledge is most limited and im sure most of it will come with more experience

If you just take the time to read some tutorials about jass you would not have to wait "most of it to come with experience"...

Introduction to JASS by Vexorian
"The syntax for making a local variable inside a function is the following:

local <VARIABLE TYPE> <VARIABLE NAME>

Optionally you can initiate the local variable with a value"


Same thing goes for vJass or any other thing/knowledge.
 

GFreak45

I didnt slap you, i high 5'd your face.
Reaction score
130
so
JASS:
function Example takes nothing returns nothing
    local real a //works? i was told it does not because it has no value and causes the thread to crash
    local real b = 0 //works
endfunction
 

Laiev

Hey Listen!!
Reaction score
188
both work... but a will not work if you try to add/reduce/multiple/divide something...

you can easily do:


JASS:
local real a

set a = 1 // this will work

// ----------
local real b

set b = b + 1 // this will not work because b is not set&#039;d and b value is nothing
 

GFreak45

I didnt slap you, i high 5'd your face.
Reaction score
130
im not worried about setting them, that i have fine, more worried about the declaration, i guess whoever it was that told me was just talking out their ass

JASS:
function Example takes nothing returns nothing
    local real a //is this the same as
    local real a = null //this?
endfunction
 

Dirac

22710180
Reaction score
147
reals can't be null, what Laiev said is the answer, how are you still confused after his post?
 

Magthridon96

Member
Reaction score
2
static arrays are way better than non-static variables.
I like them because they confuse people :D
Well, at least Nestharus and Bribe can read them well :p
 

GFreak45

I didnt slap you, i high 5'd your face.
Reaction score
130
i understood his post i never knew reals could not be null, and i guess i should have been specific on variable type, i was meaning a generic variable type
 

Ayanami

칼리
Reaction score
288
what does the .allocate method do when it is not defined in the struct?

and in your private method you dont define this
do you not have to?

Since it doesn't [ljass]extend array[/ljass], you don't need to define your own .allocate method.

It's a non-static method, meaning you're not supposed to define this, as it takes an instance o.o
 

GFreak45

I didnt slap you, i high 5'd your face.
Reaction score
130
i have another issue, i have been getting a syntax error with this:

JASS:
struct Example extends array

    private method allocate takes nothing returns thistype //this is what gives me the syntax error: you can not redeclare the allocate method
        return some number
    endmethod

endstruct


should this be Allocate instead of allocate?

and this also gives me a syntax error:

JASS:
struct Example extends array
    private static integer array recycleList

    private static method exampleMethod takes nothing returns nothing
        if (recycleList[0] = 0) then //this gives me a generic syntax error, do i need to set this to 0 on init?
        endif
    endmethod
endstruct
 

Ayanami

칼리
Reaction score
288
i have another issue, i have been getting a syntax error with this:

JASS:
struct Example extends array

    private method allocate takes nothing returns thistype //this is what gives me the syntax error: you can not redeclare the allocate method
        return some number
    endmethod

endstruct

Doesn't give me a syntax error. Maybe you have .allocate method declared


and this also gives me a syntax error:

JASS:
struct Example extends array
    private static integer array recycleList

    private static method ExampleMethod takes nothing returns nothing
        if (recycleList[0] = 0) then //this gives me a generic syntax error, do i need to set this to 0 on init?
        endif
    endmethod
endstruct

You forgot an extra = sign. Comparison should be [ljass]if recycleList[0] == 0 then[/ljass]
 

GFreak45

I didnt slap you, i high 5'd your face.
Reaction score
130
oh i did not realize thats required, i have seen people post things with 1 all the time, ill do that from now on
and the if statement was in my allocation method, would that be what got me the error?
and no i do not have another allocation method in the struct... methods: allocate, deallocate, removeLink, addLink
struct extends array
 

Ayanami

칼리
Reaction score
288
oh i did not realize thats required, i have seen people post things with 1 all the time, ill do that from now on
and the if statement was in my allocation method, would that be what got me the error?
and no i do not have another allocation method in the struct... methods: allocate, deallocate, removeLink, addLink
struct extends array

Then probably because of your comparison error? I tried compiling your above code and works fine. As for the equal sign, only use == for comparisons. For setting values, you still use a single = as per normal.
 

GFreak45

I didnt slap you, i high 5'd your face.
Reaction score
130
thanks for all the help ayanami, very few people excell in explaining anything using convergent language, but you definately are one
 

GFreak45

I didnt slap you, i high 5'd your face.
Reaction score
130
what is the difference between static and non static? i know static variables can have arrays because they are essentially a normal variable saved inside a struct and are private to that struct (i think), is it that non static methods are methods that [ljass]return thistype[/ljass] or something? or is it that they cant be called from outside a struct?

EDIT: nvm read the static/non-static methods in ayanami's tutorial

so static does not have an instance associated with it, unless you define a variable as the instance, but the non-statics are refered to with an instance already IE: [ljass]call Example[index].nonStaticMethod[/ljass]
 
General chit-chat
Help Users
  • No one is chatting at the moment.
  • Ghan Ghan:
    Still lurking
    +3
  • The Helper The Helper:
    I am great and it is fantastic to see you my friend!
    +1
  • The Helper The Helper:
    If you are new to the site please check out the Recipe and Food Forum https://www.thehelper.net/forums/recipes-and-food.220/
  • Monovertex Monovertex:
    How come you're so into recipes lately? Never saw this much interest in this topic in the old days of TH.net
  • Monovertex Monovertex:
    Hmm, how do I change my signature?
  • tom_mai78101 tom_mai78101:
    Signatures can be edit in your account profile. As for the old stuffs, I'm thinking it's because Blizzard is now under Microsoft, and because of Microsoft Xbox going the way it is, it's dreadful.
  • The Helper The Helper:
    I am not big on the recipes I am just promoting them - I use the site as a practice place promoting stuff
    +2
  • Monovertex Monovertex:
    @tom_mai78101 I must be blind. If I go on my profile I don't see any area to edit the signature; If I go to account details (settings) I don't see any signature area either.
  • The Helper The Helper:
    You can get there if you click the bell icon (alerts) and choose preferences from the bottom, signature will be in the menu on the left there https://www.thehelper.net/account/preferences
  • The Helper The Helper:
    I think I need to split the Sci/Tech news forum into 2 one for Science and one for Tech but I am hating all the moving of posts I would have to do
  • The Helper The Helper:
    What is up Old Mountain Shadow?
  • The Helper The Helper:
    Happy Thursday!
    +1
  • Varine Varine:
    Crazy how much 3d printing has come in the last few years. Sad that it's not as easily modifiable though
  • Varine Varine:
    I bought an Ender 3 during the pandemic and tinkered with it all the time. Just bought a Sovol, not as easy. I'm trying to make it use a different nozzle because I have a fuck ton of Volcanos, and they use what is basically a modified volcano that is just a smidge longer, and almost every part on this thing needs to be redone to make it work
  • Varine Varine:
    Luckily I have a 3d printer for that, I guess. But it's ridiculous. The regular volcanos are 21mm, these Sovol versions are about 23.5mm
  • Varine Varine:
    So, 2.5mm longer. But the thing that measures the bed is about 1.5mm above the nozzle, so if I swap it with a volcano then I'm 1mm behind it. So cool, new bracket to swap that, but THEN the fan shroud to direct air at the part is ALSO going to be .5mm to low, and so I need to redo that, but by doing that it is a little bit off where it should be blowing and it's throwing it at the heating block instead of the part, and fuck man
  • Varine Varine:
    I didn't realize they designed this entire thing to NOT be modded. I would have just got a fucking Bambu if I knew that, the whole point was I could fuck with this. And no one else makes shit for Sovol so I have to go through them, and they have... interesting pricing models. So I have a new extruder altogether that I'm taking apart and going to just design a whole new one to use my nozzles. Dumb design.
  • Varine Varine:
    Can't just buy a new heatblock, you need to get a whole hotend - so block, heater cartridge, thermistor, heatbreak, and nozzle. And they put this fucking paste in there so I can't take the thermistor or cartridge out with any ease, that's 30 dollars. Or you can get the whole extrudor with the direct driver AND that heatblock for like 50, but you still can't get any of it to come apart
  • Varine Varine:
    Partsbuilt has individual parts I found but they're expensive. I think I can get bits swapped around and make this work with generic shit though
  • Ghan Ghan:
    Heard Houston got hit pretty bad by storms last night. Hope all is well with TH.
  • The Helper The Helper:
    Power back on finally - all is good here no damage
    +2
  • V-SNES V-SNES:
    Happy Friday!
    +1
  • The Helper The Helper:
    New recipe is another summer dessert Berry and Peach Cheesecake - https://www.thehelper.net/threads/recipe-berry-and-peach-cheesecake.194169/

      The Helper Discord

      Members online

      No members online now.

      Affiliates

      Hive Workshop NUON Dome World Editor Tutorials

      Network Sponsors

      Apex Steel Pipe - Buys and sells Steel Pipe.
      Top