java.lang.ThreadLocal.values()方法的使用及代码示例

x33g5p2x  于2022-01-17 转载在 其他  
字(9.7k)|赞(0)|评价(0)|浏览(92)

本文整理了Java中java.lang.ThreadLocal.values()方法的一些代码示例,展示了ThreadLocal.values()的具体用法。这些代码示例主要来源于Github/Stackoverflow/Maven等平台,是从一些精选项目中提取出来的代码,具有较强的参考意义,能在一定程度帮忙到你。ThreadLocal.values()方法的具体详情如下:
包路径:java.lang.ThreadLocal
类名称:ThreadLocal
方法名:values

ThreadLocal.values介绍

[英]Gets Values instance for this thread and variable type.
[中]获取此线程和变量类型的实例值。

代码示例

代码示例来源:origin: robovm/robovm

/**
 * Removes the entry for this variable in the current thread. If this call
 * is followed by a {@link #get()} before a {@link #set},
 * {@code #get()} will call {@link #initialValue()} and create a new
 * entry with the resulting value.
 *
 * @since 1.5
 */
public void remove() {
  Thread currentThread = Thread.currentThread();
  Values values = values(currentThread);
  if (values != null) {
    values.remove(this);
  }
}

代码示例来源:origin: robovm/robovm

/**
 * Sets the value of this variable for the current thread. If set to
 * {@code null}, the value will be set to null and the underlying entry will
 * still be present.
 *
 * @param value the new value of the variable for the caller thread.
 */
public void set(T value) {
  Thread currentThread = Thread.currentThread();
  Values values = values(currentThread);
  if (values == null) {
    values = initializeValues(currentThread);
  }
  values.put(this, value);
}

代码示例来源:origin: robovm/robovm

/**
 * Returns the value of this variable for the current thread. If an entry
 * doesn't yet exist for this variable on this thread, this method will
 * create an entry, populating the value with the result of
 * {@link #initialValue()}.
 *
 * @return the current value of the variable for the calling thread.
 */
@SuppressWarnings("unchecked")
public T get() {
  // Optimized for the fast path.
  Thread currentThread = Thread.currentThread();
  Values values = values(currentThread);
  if (values != null) {
    Object[] table = values.table;
    int index = hash & values.mask;
    if (this.reference == table[index]) {
      return (T) table[index + 1];
    }
  } else {
    values = initializeValues(currentThread);
  }
  return (T) values.getAfterMiss(this);
}

代码示例来源:origin: MobiVM/robovm

/**
 * Removes the entry for this variable in the current thread. If this call
 * is followed by a {@link #get()} before a {@link #set},
 * {@code #get()} will call {@link #initialValue()} and create a new
 * entry with the resulting value.
 *
 * @since 1.5
 */
public void remove() {
  Thread currentThread = Thread.currentThread();
  Values values = values(currentThread);
  if (values != null) {
    values.remove(this);
  }
}

代码示例来源:origin: ibinti/bugvm

/**
 * Removes the entry for this variable in the current thread. If this call
 * is followed by a {@link #get()} before a {@link #set},
 * {@code #get()} will call {@link #initialValue()} and create a new
 * entry with the resulting value.
 *
 * @since 1.5
 */
public void remove() {
  Thread currentThread = Thread.currentThread();
  Values values = values(currentThread);
  if (values != null) {
    values.remove(this);
  }
}

代码示例来源:origin: com.mobidevelop.robovm/robovm-rt

/**
 * Removes the entry for this variable in the current thread. If this call
 * is followed by a {@link #get()} before a {@link #set},
 * {@code #get()} will call {@link #initialValue()} and create a new
 * entry with the resulting value.
 *
 * @since 1.5
 */
public void remove() {
  Thread currentThread = Thread.currentThread();
  Values values = values(currentThread);
  if (values != null) {
    values.remove(this);
  }
}

代码示例来源:origin: FlexoVM/flexovm

/**
 * Removes the entry for this variable in the current thread. If this call
 * is followed by a {@link #get()} before a {@link #set},
 * {@code #get()} will call {@link #initialValue()} and create a new
 * entry with the resulting value.
 *
 * @since 1.5
 */
public void remove() {
  Thread currentThread = Thread.currentThread();
  Values values = values(currentThread);
  if (values != null) {
    values.remove(this);
  }
}

代码示例来源:origin: com.bugvm/bugvm-rt

/**
 * Removes the entry for this variable in the current thread. If this call
 * is followed by a {@link #get()} before a {@link #set},
 * {@code #get()} will call {@link #initialValue()} and create a new
 * entry with the resulting value.
 *
 * @since 1.5
 */
public void remove() {
  Thread currentThread = Thread.currentThread();
  Values values = values(currentThread);
  if (values != null) {
    values.remove(this);
  }
}

代码示例来源:origin: com.gluonhq/robovm-rt

/**
 * Removes the entry for this variable in the current thread. If this call
 * is followed by a {@link #get()} before a {@link #set},
 * {@code #get()} will call {@link #initialValue()} and create a new
 * entry with the resulting value.
 *
 * @since 1.5
 */
public void remove() {
  Thread currentThread = Thread.currentThread();
  Values values = values(currentThread);
  if (values != null) {
    values.remove(this);
  }
}

代码示例来源:origin: MobiVM/robovm

/**
 * Sets the value of this variable for the current thread. If set to
 * {@code null}, the value will be set to null and the underlying entry will
 * still be present.
 *
 * @param value the new value of the variable for the caller thread.
 */
public void set(T value) {
  Thread currentThread = Thread.currentThread();
  Values values = values(currentThread);
  if (values == null) {
    values = initializeValues(currentThread);
  }
  values.put(this, value);
}

代码示例来源:origin: com.gluonhq/robovm-rt

/**
 * Sets the value of this variable for the current thread. If set to
 * {@code null}, the value will be set to null and the underlying entry will
 * still be present.
 *
 * @param value the new value of the variable for the caller thread.
 */
public void set(T value) {
  Thread currentThread = Thread.currentThread();
  Values values = values(currentThread);
  if (values == null) {
    values = initializeValues(currentThread);
  }
  values.put(this, value);
}

代码示例来源:origin: FlexoVM/flexovm

/**
 * Sets the value of this variable for the current thread. If set to
 * {@code null}, the value will be set to null and the underlying entry will
 * still be present.
 *
 * @param value the new value of the variable for the caller thread.
 */
public void set(T value) {
  Thread currentThread = Thread.currentThread();
  Values values = values(currentThread);
  if (values == null) {
    values = initializeValues(currentThread);
  }
  values.put(this, value);
}

代码示例来源:origin: ibinti/bugvm

/**
 * Sets the value of this variable for the current thread. If set to
 * {@code null}, the value will be set to null and the underlying entry will
 * still be present.
 *
 * @param value the new value of the variable for the caller thread.
 */
public void set(T value) {
  Thread currentThread = Thread.currentThread();
  Values values = values(currentThread);
  if (values == null) {
    values = initializeValues(currentThread);
  }
  values.put(this, value);
}

代码示例来源:origin: com.mobidevelop.robovm/robovm-rt

/**
 * Sets the value of this variable for the current thread. If set to
 * {@code null}, the value will be set to null and the underlying entry will
 * still be present.
 *
 * @param value the new value of the variable for the caller thread.
 */
public void set(T value) {
  Thread currentThread = Thread.currentThread();
  Values values = values(currentThread);
  if (values == null) {
    values = initializeValues(currentThread);
  }
  values.put(this, value);
}

代码示例来源:origin: com.bugvm/bugvm-rt

/**
 * Sets the value of this variable for the current thread. If set to
 * {@code null}, the value will be set to null and the underlying entry will
 * still be present.
 *
 * @param value the new value of the variable for the caller thread.
 */
public void set(T value) {
  Thread currentThread = Thread.currentThread();
  Values values = values(currentThread);
  if (values == null) {
    values = initializeValues(currentThread);
  }
  values.put(this, value);
}

代码示例来源:origin: MobiVM/robovm

/**
 * Returns the value of this variable for the current thread. If an entry
 * doesn't yet exist for this variable on this thread, this method will
 * create an entry, populating the value with the result of
 * {@link #initialValue()}.
 *
 * @return the current value of the variable for the calling thread.
 */
@SuppressWarnings("unchecked")
public T get() {
  // Optimized for the fast path.
  Thread currentThread = Thread.currentThread();
  Values values = values(currentThread);
  if (values != null) {
    Object[] table = values.table;
    int index = hash & values.mask;
    if (this.reference == table[index]) {
      return (T) table[index + 1];
    }
  } else {
    values = initializeValues(currentThread);
  }
  return (T) values.getAfterMiss(this);
}

代码示例来源:origin: com.mobidevelop.robovm/robovm-rt

/**
 * Returns the value of this variable for the current thread. If an entry
 * doesn't yet exist for this variable on this thread, this method will
 * create an entry, populating the value with the result of
 * {@link #initialValue()}.
 *
 * @return the current value of the variable for the calling thread.
 */
@SuppressWarnings("unchecked")
public T get() {
  // Optimized for the fast path.
  Thread currentThread = Thread.currentThread();
  Values values = values(currentThread);
  if (values != null) {
    Object[] table = values.table;
    int index = hash & values.mask;
    if (this.reference == table[index]) {
      return (T) table[index + 1];
    }
  } else {
    values = initializeValues(currentThread);
  }
  return (T) values.getAfterMiss(this);
}

代码示例来源:origin: com.bugvm/bugvm-rt

/**
 * Returns the value of this variable for the current thread. If an entry
 * doesn't yet exist for this variable on this thread, this method will
 * create an entry, populating the value with the result of
 * {@link #initialValue()}.
 *
 * @return the current value of the variable for the calling thread.
 */
@SuppressWarnings("unchecked")
public T get() {
  // Optimized for the fast path.
  Thread currentThread = Thread.currentThread();
  Values values = values(currentThread);
  if (values != null) {
    Object[] table = values.table;
    int index = hash & values.mask;
    if (this.reference == table[index]) {
      return (T) table[index + 1];
    }
  } else {
    values = initializeValues(currentThread);
  }
  return (T) values.getAfterMiss(this);
}

代码示例来源:origin: com.gluonhq/robovm-rt

/**
 * Returns the value of this variable for the current thread. If an entry
 * doesn't yet exist for this variable on this thread, this method will
 * create an entry, populating the value with the result of
 * {@link #initialValue()}.
 *
 * @return the current value of the variable for the calling thread.
 */
@SuppressWarnings("unchecked")
public T get() {
  // Optimized for the fast path.
  Thread currentThread = Thread.currentThread();
  Values values = values(currentThread);
  if (values != null) {
    Object[] table = values.table;
    int index = hash & values.mask;
    if (this.reference == table[index]) {
      return (T) table[index + 1];
    }
  } else {
    values = initializeValues(currentThread);
  }
  return (T) values.getAfterMiss(this);
}

代码示例来源:origin: FlexoVM/flexovm

/**
 * Returns the value of this variable for the current thread. If an entry
 * doesn't yet exist for this variable on this thread, this method will
 * create an entry, populating the value with the result of
 * {@link #initialValue()}.
 *
 * @return the current value of the variable for the calling thread.
 */
@SuppressWarnings("unchecked")
public T get() {
  // Optimized for the fast path.
  Thread currentThread = Thread.currentThread();
  Values values = values(currentThread);
  if (values != null) {
    Object[] table = values.table;
    int index = hash & values.mask;
    if (this.reference == table[index]) {
      return (T) table[index + 1];
    }
  } else {
    values = initializeValues(currentThread);
  }
  return (T) values.getAfterMiss(this);
}

相关文章