This Bugzilla instance is a read-only archive of historic NetBeans bug reports. To report a bug in NetBeans please follow the project's instructions for reporting issues.

Bug 253104 - 有时候代码提示不了
Summary: 有时候代码提示不了
Status: RESOLVED INVALID
Alias: None
Product: ide
Classification: Unclassified
Component: Code (show other bugs)
Version: 8.0.2
Hardware: PC Windows 7
: P3 normal (vote)
Assignee: issues@ide
URL:
Keywords:
Depends on:
Blocks:
 
Reported: 2015-06-22 09:23 UTC by wulinxu
Modified: 2015-06-24 10:18 UTC (History)
0 users

See Also:
Issue Type: DEFECT
Exception Reporter:


Attachments
IDE 日志 (60.23 KB, text/plain)
2015-06-22 09:23 UTC, wulinxu
Details

Note You need to log in before you can comment on or make changes to this bug.
Description wulinxu 2015-06-22 09:23:42 UTC
Product Version = NetBeans IDE 8.0.2 (Build 201411181905)
Operating System = Windows 7 version 6.1 running on amd64
Java; VM; Vendor = 1.7.0_75
Runtime = Java HotSpot(TM) 64-Bit Server VM 24.75-b04

当我用 $obj = new class(); 实例化之后,输入 $obj-> 即可提示相关的成员函数和变量
而改成单例模式 $obj = OBJ::getInstance(); 再输入 $obj-> 即不能出现相关的提示
Comment 1 wulinxu 2015-06-22 09:23:47 UTC
Created attachment 154324 [details]
IDE 日志
Comment 2 Marian Mirilovic 2015-06-23 20:10:42 UTC
Please report bugs in an English, thank you
Comment 3 wulinxu 2015-06-24 10:04:51 UTC
(In reply to Marian Mirilovic from comment #2)
> Please report bugs in an English, thank you

Sometimes IDE can't show tips.

$obj = new class();$obj->... IDE can show tips.

$obj = OBJ::getInstance();$obj->...  it didn't work.
Comment 4 wulinxu 2015-06-24 10:18:41 UTC
(In reply to Marian Mirilovic from comment #2)
> Please report bugs in an English, thank you

i'm sorry.that is my fault.i add the @return object and IDE can show tips