I have nearly solve the problem, except I have to use cast as 
mod.(*Example1.AddModule) which is wrong.

How do you cast as mod.(*AddModule)?





On Saturday, 4 June 2022 at 11:40:15 UTC+8 Henry wrote:

> You need to cast the generic interface{} to its appropriate type. For 
> instance:
>
> ```
> modules := CompileModules()
> for _, module := range modules {
>       mod, ok := module.(*AddModule)
>       if !ok {
>             //error handling if module is not of type AddModule
>       }
>       fmt.Println(mod.ModuleName())
> }
> ```
>
> On Thursday, June 2, 2022 at 7:17:04 PM UTC+7 Jay wrote:
>
>>
>>
>> In a code example, I’m confuse if it’s possible to call ModuleName() each 
>> package API after execute CompileModules()?
>>
>>
>> app.go
>>
>>
>> func CompileModules() []interface{
>>
>>     return []interface{
>>
>>         Example1.AddModule(),
>>
>>         Example2.AddModule(),
>>
>>         Example3.AddModule(),
>>
>>     }
>>
>> }
>>
>>
>>
>>
>> Init.go in Hello1 folder:
>>
>> package Example1
>>
>>
>> type AddModule struct {}
>>
>>
>> func (p *AddModule) ModuleName() string {
>>
>>     return “Hello 1”
>>
>> }
>>
>

-- 
You received this message because you are subscribed to the Google Groups 
"golang-nuts" group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to golang-nuts+unsubscr...@googlegroups.com.
To view this discussion on the web visit 
https://groups.google.com/d/msgid/golang-nuts/c3e60f88-f85e-4d94-a809-a23f04a43b44n%40googlegroups.com.

Reply via email to