Sign Up

Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.

Have an account? Sign In

Have an account? Sign In Now

Sign In

Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.

Sign Up Here

Forgot Password?

Don't have account, Sign Up Here

Forgot Password

Lost your password? Please enter your email address. You will receive a link and will create a new password via email.

Have an account? Sign In Now

You must login to ask a question.

Forgot Password?

Need An Account, Sign Up Here

Please briefly explain why you feel this question should be reported.

Please briefly explain why you feel this answer should be reported.

Please briefly explain why you feel this user should be reported.

Sign InSign Up

The Archive Base

The Archive Base Logo The Archive Base Logo

The Archive Base Navigation

  • Home
  • SEARCH
  • About Us
  • Blog
  • Contact Us
Search
Ask A Question

Mobile menu

Close
Ask a Question
  • Home
  • Add group
  • Groups page
  • Feed
  • User Profile
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Buy Points
  • Users
  • Help
  • Buy Theme
  • SEARCH
Home/ Questions/Q 8878347
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: June 14, 20262026-06-14T19:41:26+00:00 2026-06-14T19:41:26+00:00

I thought I understood Go’s classes and Method Receivers, but apparently not. They generally

  • 0

I thought I understood Go’s classes and Method Receivers, but apparently not. They generally work intuitively, but here’s an example where using one appears to cause an ‘undefined: Wtf’ error:

package main

type Writeable struct {
    seq int
}

func (w Writeable) Wtf() { // causes a compile error
//func Wtf() { // if you use this instead, it works
}

func Write() {
    Wtf() // this is the line that the compiler complains about
}

func main() {
}

I am using a compiler downloaded from golang within the last month or so, and LiteIDE. Please explain!

  • 1 1 Answer
  • 0 Views
  • 0 Followers
  • 0
Share
  • Facebook
  • Report

Leave an answer
Cancel reply

You must login to add an answer.

Forgot Password?

Need An Account, Sign Up Here

1 Answer

  • Voted
  • Oldest
  • Recent
  • Random
  1. Editorial Team
    Editorial Team
    2026-06-14T19:41:28+00:00Added an answer on June 14, 2026 at 7:41 pm

    You’re defining Wtf() as a method of Writeable. Then you’re trying to use it without a struct instance. I changed your code below to create a struct and then use Wtf() as the method of that struct. Now it compiles. http://play.golang.org/p/cDIDANewar

    package main
    
    type Writeable struct {
        seq int
    }
    
    func (w Writeable) Wtf() { // causes a compile error
    //func Wtf() { // if you use this instead, it works
    }
    
    func Write() {
        w := Writeable{}
        w.Wtf() // this is the line that the compiler complains about
    }
    
    func main() {
    }
    
    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

Ok, so I thought I understood this (no pun intended), but apparently not. var
I thought I understood decorators but not anymore. Do decorators only work when the
I thought I understood this but obviously not... I have a method signature like
I thought I understood sed but I guess not. I have the following two
After I thought that I've understood how they work, I tried this: NSString *str1
Thought I understood how classes work, then I tried this code: class user {
I'm having a blackout here. I thought I understood these principles, but I can't
I have not been working in SQL too long, but I thought I understood
I thought I understood how Cookies worked, but I guess not since I'm stuck
Just beginning to learn about structs, I thought I understood how they work, using

Explore

  • Home
  • Add group
  • Groups page
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Users
  • Help
  • SEARCH

Footer

© 2021 The Archive Base. All Rights Reserved
With Love by The Archive Base

Insert/edit link

Enter the destination URL

Or link to existing content

    No search term specified. Showing recent items. Search or use up and down arrow keys to select an item.