-1

私は入門 Java コースに参加しており、継承について学んでいます。プライベート ユーザー名変数をパブリックにするために既に記述されているスーパークラス コード内に新しいメソッド (getUserName) を作成する必要がありましたが、コンパイルしてうまく動作します。

import java.util.ArrayList;

public class Post 

    private String username;  // username of the post's author
    private long timestamp;
    private int likes;
    private ArrayList<String> comments;

    /**
     * Constructor for objects of class Post.
     * 
     * @param author    The username of the author of this post.
     */
    public Post(String author)
    {
        username = author;
        timestamp = System.currentTimeMillis();
        likes = 0;
        comments = new ArrayList<String>();
    }

    /**
     * Record one more 'Like' indication from a user.
     */
    public void like()
    {
        likes++;
    }

    /**
     * Record that a user has withdrawn his/her 'Like' vote.
     */
    public void unlike()
    {
        if (likes > 0) {
            likes--;
        }
    }

    /**
     * Add a comment to this post.
     * 
     * @param text  The new comment to add.
     */
    public void addComment(String text)
    {
        comments.add(text);
    }

    /**
     * Return the time of creation of this post.
     * 
     * @return The post's creation time, as a system time value.
     */
    public long getTimeStamp()
    {
        return timestamp;
    }

    /**
     * Display the details of this post.
     * 
     * (Currently: Print to the text terminal. This is simulating display 
     * in a web browser for now.)
     */
    public void display()
    {
        System.out.println(username);
        System.out.print(timeString(timestamp));

        if(likes > 0) {
            System.out.println("  -  " + likes + " people like this.");
        }
        else {
            System.out.println();
        }

        if(comments.isEmpty()) {
            System.out.println("   No comments.");
        }
        else {
            System.out.println("   " + comments.size() + " comment(s). Click here to view.");
        }
    }
    public String getUserName()
    {
        return username;
    }

    /**
     * Create a string describing a time point in the past in terms 
     * relative to current time, such as "30 seconds ago" or "7 minutes ago".
     * Currently, only seconds and minutes are used for the string.
     * 
     * @param time  The time value to convert (in system milliseconds)
     * @return      A relative time string for the given time
     */

    private String timeString(long time)
    {
        long current = System.currentTimeMillis();
        long pastMillis = current - time;      // time passed in milliseconds
        long seconds = pastMillis/1000;
        long minutes = seconds/60;
        if(minutes > 0) {
            return minutes + " minutes ago";
        }
        else {
            return seconds + " seconds ago";
        }
    }
}

しかし、サブクラスでこのメソッドを (printShortSummary メソッド内で) 呼び出そうとすると、コンパイルされません:

`enter code here`import java.util.ArrayList;
`enter code here`public class MessagePost extends Post
{
    private String message;  // an arbitrarily long, multi-line message

    /**
     * Constructor for objects of class MessagePost.
     * 
     * @param author    The username of the author of this post.
     * @param text      The text of this post.
     */
    public MessagePost(String author, String text)
    {
        super(author);
        message = text;
    }
    public String printShortSummary;
    {
        System.out.println("Message post from " + getUserName);

    }
    /**
     * Return the text of this post.
     * 
     * @return The post's message text.
     */
    public String getText()
    {
        return message;
    }
}
4

4 に答える 4

2

System.out.println("Message post from " + getUserName);

する必要があります

System.out.println("Message post from " + getUserName());

getUserName()はメソッドであり、引数がない場合でも、最後に括弧を付ける必要があります。

于 2013-03-21T03:47:48.307 に答える
2

変化する

public String printShortSummary;
{
    System.out.println("Message post from " + getUserName);

}

public String printShortSummary()
{
    String username;
    System.out.println("Message post from " + getUserName());
    username = getUsername();
    return username;
}

ルール

メソッド printShortSummary() は文字列値を返す必要があります。メソッドを呼び出すときは、ブラケット () を忘れないでください。結局、あなたの間違いはほとんどタイプミスです。間違いを簡単に修正できるように、Netbeans や Eclipse などの IDE を使用することをお勧めします。

于 2013-03-21T03:52:49.100 に答える
1

あなたはそれをメソッドマンと呼ぶべきです、それをこのように呼んでください

System.out.println("Message post from " + getUserName());
于 2013-03-21T03:47:32.763 に答える
1

メソッドを次のように呼び出します (括弧を使用)。

System.out.println("Message post from " + getUserName());

また、printShortSummaryメソッドを無効にするか、何らかの文字列を返す必要があります。

于 2013-03-21T03:46:40.637 に答える