日本不卡不码高清免费观看,久久国产精品久久w女人spa,黄色aa久久,三上悠亚国产精品一区二区三区

您的位置:首頁技術文章
文章詳情頁

Java計時器StopWatch實現方法代碼實例

瀏覽:14日期:2022-08-29 16:07:48

下面提供三種計時器的寫法供大家參考,大家可以自行選擇自己鐘愛的使用。

寫法一(Spring 包提供的計時器):

import java.text.NumberFormat;import java.util.LinkedList;import java.util.List;/** * Simple stop watch, allowing for timing of a number of tasks, * exposing total running time and running time for each named task. * * <p>Conceals use of {@code System.currentTimeMillis()}, improving the * readability of application code and reducing the likelihood of calculation errors. * * <p>Note that this object is not designed to be thread-safe and does not * use synchronization. * * <p>This class is normally used to verify performance during proof-of-concepts * and in development, rather than as part of production applications. * * @author Rod Johnson * @author Juergen Hoeller * @author Sam Brannen * @since May 2, 2001 */public class StopWatch { /** * Identifier of this stop watch. * Handy when we have output from multiple stop watches * and need to distinguish between them in log or console output. */ private final String id; private boolean keepTaskList = true; private final List<TaskInfo> taskList = new LinkedList<TaskInfo>(); /** Start time of the current task */ private long startTimeMillis; /** Is the stop watch currently running? */ private boolean running; /** Name of the current task */ private String currentTaskName; private TaskInfo lastTaskInfo; private int taskCount; /** Total running time */ private long totalTimeMillis; /** * Construct a new stop watch. Does not start any task. */ public StopWatch() { this(''); } /** * Construct a new stop watch with the given id. * Does not start any task. * @param id identifier for this stop watch. * Handy when we have output from multiple stop watches * and need to distinguish between them. */ public StopWatch(String id) { this.id = id; } /** * Return the id of this stop watch, as specified on construction. * @return the id (empty String by default) * @since 4.2.2 * @see #StopWatch(String) */ public String getId() { return this.id; } /** * Determine whether the TaskInfo array is built over time. Set this to * 'false' when using a StopWatch for millions of intervals, or the task * info structure will consume excessive memory. Default is 'true'. */ public void setKeepTaskList(boolean keepTaskList) { this.keepTaskList = keepTaskList; } /** * Start an unnamed task. The results are undefined if {@link #stop()} * or timing methods are called without invoking this method. * @see #stop() */ public void start() throws IllegalStateException { start(''); } /** * Start a named task. The results are undefined if {@link #stop()} * or timing methods are called without invoking this method. * @param taskName the name of the task to start * @see #stop() */ public void start(String taskName) throws IllegalStateException { if (this.running) { throw new IllegalStateException('Can’t start StopWatch: it’s already running'); } this.running = true; this.currentTaskName = taskName; this.startTimeMillis = System.currentTimeMillis(); } /** * Stop the current task. The results are undefined if timing * methods are called without invoking at least one pair * {@code start()} / {@code stop()} methods. * @see #start() */ public void stop() throws IllegalStateException { if (!this.running) { throw new IllegalStateException('Can’t stop StopWatch: it’s not running'); } long lastTime = System.currentTimeMillis() - this.startTimeMillis; this.totalTimeMillis += lastTime; this.lastTaskInfo = new TaskInfo(this.currentTaskName, lastTime); if (this.keepTaskList) { this.taskList.add(lastTaskInfo); } ++this.taskCount; this.running = false; this.currentTaskName = null; } /** * Return whether the stop watch is currently running. * @see #currentTaskName() */ public boolean isRunning() { return this.running; } /** * Return the name of the currently running task, if any. * @since 4.2.2 * @see #isRunning() */ public String currentTaskName() { return this.currentTaskName; } /** * Return the time taken by the last task. */ public long getLastTaskTimeMillis() throws IllegalStateException { if (this.lastTaskInfo == null) { throw new IllegalStateException('No tasks run: can’t get last task interval'); } return this.lastTaskInfo.getTimeMillis(); } /** * Return the name of the last task. */ public String getLastTaskName() throws IllegalStateException { if (this.lastTaskInfo == null) { throw new IllegalStateException('No tasks run: can’t get last task name'); } return this.lastTaskInfo.getTaskName(); } /** * Return the last task as a TaskInfo object. */ public TaskInfo getLastTaskInfo() throws IllegalStateException { if (this.lastTaskInfo == null) { throw new IllegalStateException('No tasks run: can’t get last task info'); } return this.lastTaskInfo; } /** * Return the total time in milliseconds for all tasks. */ public long getTotalTimeMillis() { return this.totalTimeMillis; } /** * Return the total time in seconds for all tasks. */ public double getTotalTimeSeconds() { return this.totalTimeMillis / 1000.0; } /** * Return the number of tasks timed. */ public int getTaskCount() { return this.taskCount; } /** * Return an array of the data for tasks performed. */ public TaskInfo[] getTaskInfo() { if (!this.keepTaskList) { throw new UnsupportedOperationException('Task info is not being kept!'); } return this.taskList.toArray(new TaskInfo[this.taskList.size()]); } /** * Return a short description of the total running time. */ public String shortSummary() { return 'StopWatch ’' + getId() + '’: running time (millis) = ' + getTotalTimeMillis(); } /** * Return a string with a table describing all tasks performed. * For custom reporting, call getTaskInfo() and use the task info directly. */ public String prettyPrint() { StringBuilder sb = new StringBuilder(shortSummary()); sb.append(’n’); if (!this.keepTaskList) { sb.append('No task info kept'); } else { sb.append('-----------------------------------------n'); sb.append('ms % Task namen'); sb.append('-----------------------------------------n'); NumberFormat nf = NumberFormat.getNumberInstance(); nf.setMinimumIntegerDigits(5); nf.setGroupingUsed(false); NumberFormat pf = NumberFormat.getPercentInstance(); pf.setMinimumIntegerDigits(3); pf.setGroupingUsed(false); for (TaskInfo task : getTaskInfo()) {sb.append(nf.format(task.getTimeMillis())).append(' ');sb.append(pf.format(task.getTimeSeconds() / getTotalTimeSeconds())).append(' ');sb.append(task.getTaskName()).append('n'); } } return sb.toString(); } /** * Return an informative string describing all tasks performed * For custom reporting, call {@code getTaskInfo()} and use the task info directly. */ @Override public String toString() { StringBuilder sb = new StringBuilder(shortSummary()); if (this.keepTaskList) { for (TaskInfo task : getTaskInfo()) {sb.append('; [').append(task.getTaskName()).append('] took ').append(task.getTimeMillis());long percent = Math.round((100.0 * task.getTimeSeconds()) / getTotalTimeSeconds());sb.append(' = ').append(percent).append('%'); } } else { sb.append('; no task info kept'); } return sb.toString(); } /** * Inner class to hold data about one task executed within the stop watch. */ public static final class TaskInfo { private final String taskName; private final long timeMillis; TaskInfo(String taskName, long timeMillis) { this.taskName = taskName; this.timeMillis = timeMillis; } /** * Return the name of this task. */ public String getTaskName() { return this.taskName; } /** * Return the time in milliseconds this task took. */ public long getTimeMillis() { return this.timeMillis; } /** * Return the time in seconds this task took. */ public double getTimeSeconds() { return (this.timeMillis / 1000.0); } }}

下面寫一個調用:

public static void main(String[] args) throws InterruptedException {// StopWatchTest.test0(); StopWatchTest.test1();}public static void test1() throws InterruptedException { StopWatch sw = new StopWatch('test'); sw.start('task1'); // do something Thread.sleep(100); sw.stop(); sw.start('task2'); // do something Thread.sleep(200); sw.stop(); System.out.println('sw.prettyPrint()~~~~~~~~~~~~~~~~~'); System.out.println(sw.prettyPrint());}

運行結果:

sw.prettyPrint()~~~~~~~~~~~~~~~~~StopWatch ’test’: running time (millis) = 308-----------------------------------------ms % Task name-----------------------------------------00104 034% task100204 066% task2---------------------

start開始記錄,stop停止記錄,然后通過StopWatch的prettyPrint方法,可直觀的輸出代碼執行耗時,以及執行時間百分比,瞬間感覺比之前的方式高大上了一個檔次。

 除此之外,還有以下兩個方法shortSummary,getTotalTimeMillis,查看程序執行時間。

寫法二(apache.commons實現的計時器):

import java.util.concurrent.TimeUnit;/** * <p> * <code>StopWatch</code> provides a convenient API for timings. * </p> * * <p> * To start the watch, call {@link #start()} or {@link StopWatch#createStarted()}. At this point you can: * </p> * <ul> * <li>{@link #split()} the watch to get the time whilst the watch continues in the background. {@link #unsplit()} will * remove the effect of the split. At this point, these three options are available again.</li> * <li>{@link #suspend()} the watch to pause it. {@link #resume()} allows the watch to continue. Any time between the * suspend and resume will not be counted in the total. At this point, these three options are available again.</li> * <li>{@link #stop()} the watch to complete the timing session.</li> * </ul> * * <p> * It is intended that the output methods {@link #toString()} and {@link #getTime()} should only be called after stop, * split or suspend, however a suitable result will be returned at other points. * </p> * * <p> * NOTE: As from v2.1, the methods protect against inappropriate calls. Thus you cannot now call stop before start, * resume before suspend or unsplit before split. * </p> * * <p> * 1. split(), suspend(), or stop() cannot be invoked twice<br> * 2. unsplit() may only be called if the watch has been split()<br> * 3. resume() may only be called if the watch has been suspend()<br> * 4. start() cannot be called twice without calling reset() * </p> * * <p>This class is not thread-safe</p> * * @since 2.0 */public class StopWatch { private static final long NANO_2_MILLIS = 1000000L; /** * Provides a started stopwatch for convenience. * * @return StopWatch a stopwatch that’s already been started. * * @since 3.5 */ public static StopWatch createStarted() { final StopWatch sw = new StopWatch(); sw.start(); return sw; } /** * Enumeration type which indicates the status of stopwatch. */ private enum State { UNSTARTED { @Override boolean isStarted() {return false; } @Override boolean isStopped() {return true; } @Override boolean isSuspended() {return false; } }, RUNNING { @Override boolean isStarted() {return true; } @Override boolean isStopped() {return false; } @Override boolean isSuspended() {return false; } }, STOPPED { @Override boolean isStarted() {return false; } @Override boolean isStopped() {return true; } @Override boolean isSuspended() {return false; } }, SUSPENDED { @Override boolean isStarted() {return true; } @Override boolean isStopped() {return false; } @Override boolean isSuspended() {return true; } }; /** * <p> * The method is used to find out if the StopWatch is started. A suspended * StopWatch is also started watch. * </p> * @return boolean * If the StopWatch is started. */ abstract boolean isStarted(); /** * <p> * This method is used to find out whether the StopWatch is stopped. The * stopwatch which’s not yet started and explicitly stopped stopwatch is * considered as stopped. * </p> * * @return boolean * If the StopWatch is stopped. */ abstract boolean isStopped(); /** * <p> * This method is used to find out whether the StopWatch is suspended. * </p> * * @return boolean * If the StopWatch is suspended. */ abstract boolean isSuspended(); } /** * Enumeration type which indicates the split status of stopwatch. */ private enum SplitState { SPLIT, UNSPLIT } /** * The current running state of the StopWatch. */ private State runningState = State.UNSTARTED; /** * Whether the stopwatch has a split time recorded. */ private SplitState splitState = SplitState.UNSPLIT; /** * The start time. */ private long startTime; /** * The start time in Millis - nanoTime is only for elapsed time so we * need to also store the currentTimeMillis to maintain the old * getStartTime API. */ private long startTimeMillis; /** * The stop time. */ private long stopTime; /** * <p> * Constructor. * </p> */ public StopWatch() { super(); } /** * <p> * Start the stopwatch. * </p> * * <p> * This method starts a new timing session, clearing any previous values. * </p> * * @throws IllegalStateException * if the StopWatch is already running. */ public void start() { if (this.runningState == State.STOPPED) { throw new IllegalStateException('Stopwatch must be reset before being restarted. '); } if (this.runningState != State.UNSTARTED) { throw new IllegalStateException('Stopwatch already started. '); } this.startTime = System.nanoTime(); this.startTimeMillis = System.currentTimeMillis(); this.runningState = State.RUNNING; } /** * <p> * Stop the stopwatch. * </p> * * <p> * This method ends a new timing session, allowing the time to be retrieved. * </p> * * @throws IllegalStateException * if the StopWatch is not running. */ public void stop() { if (this.runningState != State.RUNNING && this.runningState != State.SUSPENDED) { throw new IllegalStateException('Stopwatch is not running. '); } if (this.runningState == State.RUNNING) { this.stopTime = System.nanoTime(); } this.runningState = State.STOPPED; } /** * <p> * Resets the stopwatch. Stops it if need be. * </p> * * <p> * This method clears the internal values to allow the object to be reused. * </p> */ public void reset() { this.runningState = State.UNSTARTED; this.splitState = SplitState.UNSPLIT; } /** * <p> * Split the time. * </p> * * <p> * This method sets the stop time of the watch to allow a time to be extracted. The start time is unaffected, * enabling {@link #unsplit()} to continue the timing from the original start point. * </p> * * @throws IllegalStateException * if the StopWatch is not running. */ public void split() { if (this.runningState != State.RUNNING) { throw new IllegalStateException('Stopwatch is not running. '); } this.stopTime = System.nanoTime(); this.splitState = SplitState.SPLIT; } /** * <p> * Remove a split. * </p> * * <p> * This method clears the stop time. The start time is unaffected, enabling timing from the original start point to * continue. * </p> * * @throws IllegalStateException * if the StopWatch has not been split. */ public void unsplit() { if (this.splitState != SplitState.SPLIT) { throw new IllegalStateException('Stopwatch has not been split. '); } this.splitState = SplitState.UNSPLIT; } /** * <p> * Suspend the stopwatch for later resumption. * </p> * * <p> * This method suspends the watch until it is resumed. The watch will not include time between the suspend and * resume calls in the total time. * </p> * * @throws IllegalStateException * if the StopWatch is not currently running. */ public void suspend() { if (this.runningState != State.RUNNING) { throw new IllegalStateException('Stopwatch must be running to suspend. '); } this.stopTime = System.nanoTime(); this.runningState = State.SUSPENDED; } /** * <p> * Resume the stopwatch after a suspend. * </p> * * <p> * This method resumes the watch after it was suspended. The watch will not include time between the suspend and * resume calls in the total time. * </p> * * @throws IllegalStateException * if the StopWatch has not been suspended. */ public void resume() { if (this.runningState != State.SUSPENDED) { throw new IllegalStateException('Stopwatch must be suspended to resume. '); } this.startTime += System.nanoTime() - this.stopTime; this.runningState = State.RUNNING; } /** * <p> * Get the time on the stopwatch. * </p> * * <p> * This is either the time between the start and the moment this method is called, or the amount of time between * start and stop. * </p> * * @return the time in milliseconds */ public long getTime() { return getNanoTime() / NANO_2_MILLIS; } /** * <p> * Get the time on the stopwatch in the specified TimeUnit. * </p> * * <p> * This is either the time between the start and the moment this method is called, or the amount of time between * start and stop. The resulting time will be expressed in the desired TimeUnit with any remainder rounded down. * For example, if the specified unit is {@code TimeUnit.HOURS} and the stopwatch time is 59 minutes, then the * result returned will be {@code 0}. * </p> * * @param timeUnit the unit of time, not null * @return the time in the specified TimeUnit, rounded down * @since 3.5 */ public long getTime(final TimeUnit timeUnit) { return timeUnit.convert(getNanoTime(), TimeUnit.NANOSECONDS); } /** * <p> * Get the time on the stopwatch in nanoseconds. * </p> * * <p> * This is either the time between the start and the moment this method is called, or the amount of time between * start and stop. * </p> * * @return the time in nanoseconds * @since 3.0 */ public long getNanoTime() { if (this.runningState == State.STOPPED || this.runningState == State.SUSPENDED) { return this.stopTime - this.startTime; } else if (this.runningState == State.UNSTARTED) { return 0; } else if (this.runningState == State.RUNNING) { return System.nanoTime() - this.startTime; } throw new RuntimeException('Illegal running state has occurred.'); } /** * <p> * Get the split time on the stopwatch. * </p> * * <p> * This is the time between start and latest split. * </p> * * @return the split time in milliseconds * * @throws IllegalStateException * if the StopWatch has not yet been split. * @since 2.1 */ public long getSplitTime() { return getSplitNanoTime() / NANO_2_MILLIS; } /** * <p> * Get the split time on the stopwatch in nanoseconds. * </p> * * <p> * This is the time between start and latest split. * </p> * * @return the split time in nanoseconds * * @throws IllegalStateException * if the StopWatch has not yet been split. * @since 3.0 */ public long getSplitNanoTime() { if (this.splitState != SplitState.SPLIT) { throw new IllegalStateException('Stopwatch must be split to get the split time. '); } return this.stopTime - this.startTime; } /** * Returns the time this stopwatch was started. * * @return the time this stopwatch was started * @throws IllegalStateException * if this StopWatch has not been started * @since 2.4 */ public long getStartTime() { if (this.runningState == State.UNSTARTED) { throw new IllegalStateException('Stopwatch has not been started'); } // System.nanoTime is for elapsed time return this.startTimeMillis; } /** * <p> * Gets a summary of the time that the stopwatch recorded as a string. * </p> * * <p> * The format used is ISO 8601-like, <i>hours</i>:<i>minutes</i>:<i>seconds</i>.<i>milliseconds</i>. * </p> * * @return the time as a String */ @Override public String toString() { return DurationFormatUtils.formatDurationHMS(getTime()); } /** * <p> * Gets a summary of the split time that the stopwatch recorded as a string. * </p> * * <p> * The format used is ISO 8601-like, <i>hours</i>:<i>minutes</i>:<i>seconds</i>.<i>milliseconds</i>. * </p> * * @return the split time as a String * @since 2.1 */ public String toSplitString() { return DurationFormatUtils.formatDurationHMS(getSplitTime()); } /** * <p> * The method is used to find out if the StopWatch is started. A suspended * StopWatch is also started watch. * </p> * * @return boolean * If the StopWatch is started. * @since 3.2 */ public boolean isStarted() { return runningState.isStarted(); } /** * <p> * This method is used to find out whether the StopWatch is suspended. * </p> * * @return boolean * If the StopWatch is suspended. * @since 3.2 */ public boolean isSuspended() { return runningState.isSuspended(); } /** * <p> * This method is used to find out whether the StopWatch is stopped. The * stopwatch which’s not yet started and explicitly stopped stopwatch is * considered as stopped. * </p> * * @return boolean * If the StopWatch is stopped. * @since 3.2 */ public boolean isStopped() { return runningState.isStopped(); }}

寫法三(Scala函數寫法):

import org.slf4j.LoggerFactory/** * 類功能描述:Debug日志追蹤 * * @author barry create at 18-8-29 下午3:41 * @version 1.0.0 */object Debug { val LOGGER = LoggerFactory.getLogger(getClass) val counter = collection.mutable.Map[String, Int]() // label -> count val times = collection.mutable.Map[String, Long]() // label - time(ns) /** *追蹤代碼塊 * @param label 標簽名 * @param codeBlock 代碼塊 * @tparam T 返回結果類型 * @return */ def trace[T](label: String)(codeBlock: => T) = { val t0 = System.nanoTime() val result = codeBlock val t1 = System.nanoTime() counter.get(label).map(_counter => counter.put(label, _counter + 1)).orElse(counter.put(label, 1)) times.get(label).map(cost => times.put(label, cost + (t1 - t0))).orElse(times.put(label, t1 - t0)) result } /** * 打印日志 */ def info(): Unit = { LOGGER.warn('FinallyDone...') LOGGER.warn(s'counter:${counter}') LOGGER.warn(s'times:${times.map { case (label, cost) => (label, cost / 1000000)}}ms') } /** * 重新計數 */ def reset(): Unit = { counter.clear() times.clear() }}

參考下面測試代碼:

java版本:

/** * @author WangXueXing create at 19-7-31 下午1:46 * @version 1.0.0 */public class StopWatchDemo { public static void main(String[] args){ Debug.trace('方法1調用次數及用時', ()->{ try {Thread.sleep(2000); } catch (InterruptedException e) {e.printStackTrace(); } return ''; }); Debug.trace('方法1調用次數及用時', ()->{ try {Thread.sleep(2000); } catch (InterruptedException e) {e.printStackTrace(); } return ''; }); Debug.trace('方法2調用次數及用時', ()->{ try {Thread.sleep(2000); } catch (InterruptedException e) {e.printStackTrace(); } return 10; }); Debug.info(); }}

輸出結果:

15:29:32.228 [main] WARN test.Debug$ - FinallyDone...15:29:32.361 [main] WARN test.Debug$ - counter:Map(方法2調用次數及用時 -> 1, 方法1調用次數及用時 -> 2)15:29:32.364 [main] WARN test.Debug$ - times:Map(方法2調用次數及用時 -> 2000, 方法1調用次數及用時 -> 4000)ms

scala版本:

/** * @author WangXueXing create at 19-8-1 下午3:40 * @version 1.0.0 */object StopWatchTest { def main(args: Array[String]): Unit = { Debug.trace('方法1調用次數及用時')( Thread.sleep(200)) Debug.trace('方法1調用次數及用時')( Thread.sleep(200)) Debug.trace('方法2調用次數及用時')( Thread.sleep(200)) Debug.info() }}

輸出結果:

15:43:58.601 [main] WARN test.stopwatch.Debug$ - FinallyDone...15:43:58.735 [main] WARN test.stopwatch.Debug$ - counter:Map(方法2調用次數及用時 -> 1, 方法1調用次數及用時 -> 2)15:43:58.739 [main] WARN test.stopwatch.Debug$ - times:Map(方法2調用次數及用時 -> 200, 方法1調用次數及用時 -> 400)ms

對比java版本與scala版本,是不是看到scala的簡潔及強大了吧!

以上就是本文的全部內容,希望對大家的學習有所幫助,也希望大家多多支持好吧啦網。

標簽: Java
相關文章:
日本不卡不码高清免费观看,久久国产精品久久w女人spa,黄色aa久久,三上悠亚国产精品一区二区三区
九一精品国产| 日韩精品欧美激情一区二区| 97精品国产福利一区二区三区| 蜜臀av一区二区在线免费观看 | 一本色道精品久久一区二区三区| а√天堂8资源中文在线| 9999国产精品| 成人在线网站| 亚洲欧美伊人| 色综合www| 久久视频精品| 先锋影音国产一区| 日本午夜免费一区二区| 日韩1区2区3区| 免费欧美日韩| 精品一区二区三区中文字幕视频| 亚洲特级毛片| 麻豆精品新av中文字幕| 亚州精品视频| 日韩专区精品| 日韩在线二区| 免费久久久久久久久| 欧美日韩亚洲一区三区| 欧美91在线| 日韩欧美视频专区| 精精国产xxxx视频在线播放 | 麻豆成人综合网| 日本欧美国产| 欧美日韩国产传媒| 亚洲制服少妇| 国产欧美欧美| 国产精品免费精品自在线观看| 亚洲乱码一区| 国内自拍视频一区二区三区| 在线人成日本视频| 1024精品一区二区三区| 视频一区二区国产| 国产欧美综合一区二区三区| 久久精品九色| 国产精品美女久久久浪潮软件| 日韩av影院| 久久精品五月| 亚洲少妇自拍| 欧美国产日本| aⅴ色国产欧美| 日韩精品视频网| 欧美不卡高清一区二区三区| 亚洲少妇在线| 激情久久五月| 国产精品日韩精品在线播放| 香蕉视频亚洲一级| 天堂俺去俺来也www久久婷婷| 久久一区国产| 综合国产视频| 亚洲v在线看| 911精品国产| а√天堂中文在线资源8| 伊人www22综合色| 国产不卡一区| 91久久精品无嫩草影院| 国产精品久久久久久久久久10秀| 亚洲一区中文| 精品日韩视频| 久久精品一本| 日本成人在线网站| 亚洲一区成人| 99国产精品一区二区| 国产精品网址| 午夜亚洲福利在线老司机| 蜜臀av性久久久久蜜臀aⅴ流畅| 国产伦精品一区二区三区千人斩| 亚洲一级高清| 精品视频一二| 欧美成人精品一级| 欧美日韩一区二区三区四区在线观看 | 日韩不卡视频在线观看| 青青国产精品| 日韩二区三区在线观看| 天堂成人免费av电影一区 | 欧美日韩精品一区二区视频| 福利一区二区三区视频在线观看| 在线一区免费| 亚洲无线一线二线三线区别av| 亚洲精品国产偷自在线观看| 水蜜桃精品av一区二区| 欧美亚洲三区| 免费观看在线综合色| 欧美成人综合| 在线成人直播| 香蕉视频成人在线观看| 久久福利毛片| 日韩av在线免费观看不卡| 男女男精品视频网| 在线一区二区三区视频| 日韩欧美久久| 久久激情五月激情| 久久精品女人| 亚洲va中文在线播放免费| 久久伦理在线| 综合国产视频| 国产精久久久| 欧美精品第一区| 欧美成人aaa| 国产精品久久久久久久久妇女| 高清一区二区| 91看片一区| 美女91精品| 美女精品视频在线| 久久精品免费一区二区三区| 蜜臀国产一区二区三区在线播放| 国产精品免费99久久久| 九九久久电影| 国产日韩一区二区三免费高清| 日韩中文在线电影| 中文字幕日韩高清在线| 国产96在线亚洲| 91超碰国产精品| 麻豆成人91精品二区三区| 久久影院午夜精品| 午夜性色一区二区三区免费视频| 麻豆精品蜜桃| 亚洲精品婷婷| 日韩.com| 国产精品美女久久久浪潮软件| 日韩综合一区二区三区| 国产成人精品一区二区免费看京| 国产精品日本| 91视频精品| 日韩福利视频导航| 成人片免费看| 国产精品一区三区在线观看| 日韩深夜视频| 日本三级亚洲精品| 另类国产ts人妖高潮视频| 久久精品九色| 久久午夜视频| 亚洲精品日韩久久| 欧美午夜精彩| 国产精品久久久久蜜臀| 久久激五月天综合精品| 亚洲免费福利| 欧美不卡高清| 国产亚洲一区二区手机在线观看| 亚洲一区激情| 99视频一区| 亚洲精品1区| 毛片在线网站| 国产+成+人+亚洲欧洲在线| 久久激五月天综合精品| 国产九一精品| 国产激情欧美| 免费亚洲一区| 国产成人精品三级高清久久91| 日韩美女国产精品| 国产麻豆精品| 久久久久久亚洲精品美女| 久久久精品国产**网站| 久久蜜桃av| 国产免费av国片精品草莓男男 | 蜜桃一区二区三区| 美国三级日本三级久久99| 久久久精品区| 亚洲欧美日本日韩| 中文字幕在线免费观看视频| 午夜性色一区二区三区免费视频| 综合日韩av| 国产精品一级| 亚洲一区区二区| 欧美aa在线观看| 国产精品主播在线观看| 亚洲激情婷婷| 日韩国产欧美| 国产精品对白| 日韩一区二区三区精品| 激情五月综合网| 麻豆一区二区三| 日韩av网站免费在线| 欧美日韩精品免费观看视频完整| 精品72久久久久中文字幕| 日韩毛片网站| 亚洲区第一页| 一本一道久久a久久| 亚洲午夜精品久久久久久app| 精品99在线| 大香伊人久久精品一区二区| 国产精品极品国产中出| 国产精品一级| 国产情侣一区| 国产精品亚洲综合久久| 国产免费播放一区二区| 蜜芽一区二区三区| 亚洲人亚洲人色久| 日韩国产欧美一区二区三区| 日本不卡高清| 国产情侣一区在线| 鲁大师精品99久久久| 欧美成人一二区| 国产白浆在线免费观看| 99久久婷婷这里只有精品| 亚洲黑丝一区二区|