Facebook   Twitter    e-mail newsletter    YouTube    RSS Feed    Android App    iPhone and iPad App     BlackBerry App    


Results 1 to 15 of 15

Thread: Development Terminology

  1. #1
    Super Grandmaster Pho3nix's Avatar
    Join Date
    Jul 2009
    Location
    On the toilet
    Posts
    5,106

    Default Development Terminology

    Hi guys,

    I noticed something today and it's that my terminology is horribly wrong for alot of the work I do and this is causing massive communication issues as you can imagine and leaves me looking imcompetant
    As I never studied IT formally alot of things I know how to do but the naming conventions leave me with whiplash. How did you learn all the terminology? Already printed a huge amount of stuff to read through tonight and already ordered a couple books aswell.
    Quote Originally Posted by Zewp View Post
    It's only 10cm Pooky. We can cut your legs off just above the ankles.

  2. #2

    Default

    That's a bit vague... do you want to know about terminology or naming conventions? And which language?

  3. #3
    Super Grandmaster Pho3nix's Avatar
    Join Date
    Jul 2009
    Location
    On the toilet
    Posts
    5,106

    Default

    Terminology. Functions, methods, repositories and the like. Feel ashamed to call myself a developer not fully grasping the terminology. C#, ASP.net.
    Quote Originally Posted by Zewp View Post
    It's only 10cm Pooky. We can cut your legs off just above the ankles.

  4. #4
    Grandmaster Hamster's Avatar
    Join Date
    Jan 2011
    Location
    Johannesburg
    Posts
    3,997

    Default

    You're not alone. I know what I'm doing and how to describe things, but when the senior senior devs and architects talk you sometimes feel like you've just been insulted in Greek.

  5. #5

    Default

    thing is, things are just made up constantly, and new words are synonyms for old words.
    datastores became repositories. managers became services, etc

    just make a mental note, and google.

    we could start a list

    as I know them.
    functions, methods that return something
    procedures, methods that return nothing (void = nothing too)
    methods, functions and procedures on a class

  6. #6

    Default

    Quote Originally Posted by _kabal_ View Post
    procedures, methods that return nothing (void = nothing too)
    What about SQL procedures?
    Quote Originally Posted by _kabal_ View Post
    methods, functions and procedures on a class
    Also called member functions in C++.

  7. #7
    Super Grandmaster Knyro's Avatar
    Join Date
    Jul 2010
    Location
    The lair
    Posts
    8,081

    Default

    Quote Originally Posted by _kabal_ View Post
    thing is, things are just made up constantly, and new words are synonyms for old words.
    datastores became repositories. managers became services, etc

    just make a mental note, and google.

    we could start a list

    as I know them.
    functions, methods that return something
    procedures, methods that return nothing (void = nothing too)
    methods, functions and procedures on a class
    No, functions, procedures and methods are all the same thing, regardless if they return something/are part of a class or not. What they are called usually depends on what language you are using, but you can use then interchangeably. They are formally known as subroutines.

    In computer science, a subroutine, also termed procedure, function, routine, method, or subprogram, is a part of source code within a larger computer program that performs a specific task and is relatively independent of the remaining code.
    Last edited by Knyro; 01-08-2012 at 09:26 AM.
    You dare doubt the teachings of science!? Blasphemy!

  8. #8

    Default

    Quote Originally Posted by _kabal_ View Post
    thing is, things are just made up constantly, and new words are synonyms for old words.
    lol, true.

    Look, it takes time, sooner or later you will be talking like that as well, and new comers will look up to you and think, wow, you are soooo clever and blah blah, but its a natural process.

    Focus on walking the walk.
    all the footsteps that were beside mine have gone their separate ways.

  9. #9

    Default

    Maybe get a ASP.net or C# book for Dummies, those courses are designed for very beginners and just touches on the basics of all aspects, covered in those basics, should be the terminology. So you can just read through the book and as you go along, you will realise "oh this is what I've been doing there and this is what they call it" type of thing.

  10. #10
    Grandmaster Hamster's Avatar
    Join Date
    Jan 2011
    Location
    Johannesburg
    Posts
    3,997

    Default

    Quote Originally Posted by Knyro View Post
    No, functions, procedures and methods are all the same thing, regardless if they return something/are part of a class or not. What they are called usually depends on what language you are using, but you can use then interchangeably. They are formally known as subroutines.
    I always thought that a method is a "member function", ie. it is associated with some object.

    As in:

    Code:
    def MyFunction(Person p):
      #do stuff
    
    
    class Person(object):
        def MyMethod(self):
           #do stuff
    Jason Brody is the Justin Bieber of the gaming world

    Bestest MMORPG ever! - www.investorchallenge.co.za

  11. #11
    Super Grandmaster Knyro's Avatar
    Join Date
    Jul 2010
    Location
    The lair
    Posts
    8,081

    Default

    Quote Originally Posted by Hamster View Post
    I always thought that a method is a "member function", ie. it is associated with some object.
    Hmmm yes you're right, I should have left methods out of that sentence
    You dare doubt the teachings of science!? Blasphemy!

  12. #12

    Default

    it is all context, and what makes things easier to talk about.

    in my group, alot of us are from a delphi background, so when we say function or procedure, we know what it implies, even though we are mostly doing java, where I guess they only have "functions"

  13. #13

    Default

    I have been going through a Java certification (OCPJP), it has helped me brush up on the terminology lol, I suggest you go through that if you have the time. It will help you become a better coder.

  14. #14
    Super Grandmaster DrJohnZoidberg's Avatar
    Join Date
    Jul 2006
    Location
    In a dumpster
    Posts
    6,378

    Default

    Quote Originally Posted by Knyro View Post
    Hmmm yes you're right, I should have left methods out of that sentence
    There's madness in your method
    === The HP Proliant MicroServer Wiki - http://myhtpc.co.za/hpwiki ===

  15. #15

    Default

    I've always thought as "function" as the way to describe the generic "doing thing".

    Even if it's a method.

Similar Threads

  1. Housing terminology
    By blunomore in forum Off Topic
    Replies: 6
    Last Post: 08-06-2010, 09:21 AM
  2. Human reproduction in IT Terminology
    By Saajid in forum Off Topic
    Replies: 10
    Last Post: 11-02-2010, 05:31 PM
  3. ADSL terminology noob - Help anyone?
    By Sojourn_za in forum ADSL Discussions
    Replies: 5
    Last Post: 04-08-2006, 01:45 PM
  4. Labour Terminology
    By Xenophon in forum Off Topic
    Replies: 16
    Last Post: 12-10-2005, 08:44 AM

Bookmarks

Bookmarks

Posting Permissions

  • You may not post new threads
  • You may not post replies
  • You may not post attachments
  • You may not edit your posts
  •