• Home
  • About
  • Sitemap
  • Search
Complete Coding
Subscribe to Complete Coding
Subscribe to Complete Coding

    How To Use Inheritance In Google Go

    By kevin

    A Go interface is similar to a C++ pure abstract class: a class with no data members, with methods which are all pure virtual. However, in Go, any type which provides the methods named in the interface may be treated …..

    Read More

    How To Use Interfaces In Google Go

    By kevin

    Method Of A Type
    To declare a method of a type, we define a function to have an explicit receiver of that type, placed in parentheses before the function name.
    Methods are not declared within the struct declaration itself. The struct declaration …..

    Read More

    IndiChrome: Indiblogger Chrome Extension

    By kevin

    IndiChrome is a Google Chrome extension on similar lines such as Indiblogger Firefox Addon. It places the various links of Indiblogger in the Google Chrome toolbar so that bloggers can easily navigate to any of them.
    Thanks to Sujith for an …..

    Read More

    How To Dynamically Allocate Memory In Google Go

    By kevin

    We have already seen the layout of a program in memory. The variables that we declare/define in the program are placed on the stack. Using dynamic memory allocation, we can allocate memory to the variables on the heap during runtime.
    Those …..

    Read More

    How To Use Control Structures In Google Go

    By kevin

    Control structures are the mechanism by which you can alter the execution of your program based on the success of certain conditions.
    For those of you familiar with C programming, Google Go supports the if, for and switch control structures. It …..

    Read More

    Previous Page Next Page

    Recent Posts

    • Did We Pass On The Joel Test?
    • Programming Is About Doing The Job Right
    • How should I decide on the programming language to learn next?
    • How To Handle Errors In Google Go
    • How To Achieve Concurrency In Google Go
    Complete Coding Categories
    • development
    • general
    • programming
    • programs
    • today's read
    © 2010-2011 Kevin Rodrigues.